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