use of org.camunda.bpm.model.dmn.instance.UsingProcessReference in project camunda-dmn-model by camunda.
the class UsingProcessReferenceImpl method registerType.
public static void registerType(ModelBuilder modelBuilder) {
ModelElementTypeBuilder typeBuilder = modelBuilder.defineType(UsingProcessReference.class, DMN_ELEMENT_USING_PROCESS).namespaceUri(DMN11_NS).extendsType(DmnElementReference.class).instanceProvider(new ModelTypeInstanceProvider<UsingProcessReference>() {
public UsingProcessReference newInstance(ModelTypeInstanceContext instanceContext) {
return new UsingProcessReferenceImpl(instanceContext);
}
});
typeBuilder.build();
}
Aggregations