use of org.whole.lang.reusables.visitors.ReusablesUIDynamicCompilerVisitor in project whole by wholeplatform.
the class ReusablesUIDeployer method deploy.
public void deploy(ReflectionFactory platform) {
platform.addEditorKit(ReusablesEditorKit.ID);
platform.addOperationFactory(ReusablesLanguageKit.URI, DynamicCompilerOperation.ID, new IVisitorFactory() {
public IVisitor create(IOperation operation, int stage) {
if (stage == 0)
return new ReusablesUIDynamicCompilerVisitor();
else
return null;
}
});
}
Aggregations