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