use of org.whole.lang.changes.builders.IChangesBuilder in project whole by wholeplatform.
the class ChangesLanguageDeployer method deploy.
public void deploy(ReflectionFactory platform) {
platform.addLanguageKit(new ChangesLanguageKit());
platform.addOperationFactory(ChangesLanguageKit.URI, GenericBuilderAdapterOperation.ID, new IBuilderFactory() {
public IBuilder create(IBuilder strategy, IEntityContext entityContext) {
return new ChangesGenericBuilderAdapter((IChangesBuilder) strategy, entityContext);
}
});
platform.addOperationFactory(ChangesLanguageKit.URI, SpecificBuilderAdapterOperation.ID, new IBuilderFactory() {
public IBuilder create(IBuilder strategy, IEntityContext entityContext) {
return new ChangesSpecificBuilderAdapter(strategy, entityContext);
}
});
}
Aggregations