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