Search in sources :

Example 1 with DrgElementReference

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();
}
Also used : DrgElementReference(org.camunda.bpm.model.dmn.instance.DrgElementReference) ModelElementTypeBuilder(org.camunda.bpm.model.xml.type.ModelElementTypeBuilder) DmnElementReference(org.camunda.bpm.model.dmn.instance.DmnElementReference) ModelTypeInstanceContext(org.camunda.bpm.model.xml.impl.instance.ModelTypeInstanceContext)

Aggregations

DmnElementReference (org.camunda.bpm.model.dmn.instance.DmnElementReference)1 DrgElementReference (org.camunda.bpm.model.dmn.instance.DrgElementReference)1 ModelTypeInstanceContext (org.camunda.bpm.model.xml.impl.instance.ModelTypeInstanceContext)1 ModelElementTypeBuilder (org.camunda.bpm.model.xml.type.ModelElementTypeBuilder)1