Examples of stringAttribute()


Examples of org.camunda.bpm.model.xml.type.ModelElementTypeBuilder.stringAttribute()

        public CorrelationPropertyBinding newInstance(ModelTypeInstanceContext instanceContext) {
          return new CorrelationPropertyBindingImpl(instanceContext);
        }
      });

    correlationPropertyRefAttribute = typeBuilder.stringAttribute(BPMN_ATTRIBUTE_CORRELATION_PROPERTY_REF)
      .required()
      .qNameAttributeReference(CorrelationProperty.class)
      .build();

    SequenceBuilder sequenceBuilder = typeBuilder.sequence();
View Full Code Here

Examples of org.camunda.bpm.model.xml.type.ModelElementTypeBuilder.stringAttribute()

        public CallConversation newInstance(ModelTypeInstanceContext instanceContext) {
          return new CallConversationImpl(instanceContext);
        }
      });

    calledCollaborationRefAttribute = typeBuilder.stringAttribute(BPMN_ATTRIBUTE_CALLED_COLLABORATION_REF)
      .qNameAttributeReference(GlobalConversation.class)
      .build();

    SequenceBuilder sequenceBuilder = typeBuilder.sequence();
View Full Code Here

Examples of org.camunda.bpm.model.xml.type.ModelElementTypeBuilder.stringAttribute()

  public static void registerType(ModelBuilder bpmnModelBuilder) {
    ModelElementTypeBuilder typeBuilder = bpmnModelBuilder.defineType(BaseElement.class, BPMN_ELEMENT_BASE_ELEMENT)
      .namespaceUri(BPMN20_NS)
      .abstractType();

    idAttribute = typeBuilder.stringAttribute(BPMN_ATTRIBUTE_ID)
      .idAttribute()
      .build();

    SequenceBuilder sequenceBuilder = typeBuilder.sequence();
View Full Code Here

Examples of org.camunda.bpm.model.xml.type.ModelElementTypeBuilder.stringAttribute()

        public CamundaConstraint newInstance(ModelTypeInstanceContext instanceContext) {
          return new CamundaConstraintImpl(instanceContext);
        }
      });

    camundaNameAttribute = typeBuilder.stringAttribute(CAMUNDA_ATTRIBUTE_NAME)
      .namespace(CAMUNDA_NS)
      .build();

    camundaConfigAttribute = typeBuilder.stringAttribute(CAMUNDA_ATTRIBUTE_CONFIG)
      .namespace(CAMUNDA_NS)
View Full Code Here

Examples of org.camunda.bpm.model.xml.type.ModelElementTypeBuilder.stringAttribute()

    camundaNameAttribute = typeBuilder.stringAttribute(CAMUNDA_ATTRIBUTE_NAME)
      .namespace(CAMUNDA_NS)
      .build();

    camundaConfigAttribute = typeBuilder.stringAttribute(CAMUNDA_ATTRIBUTE_CONFIG)
      .namespace(CAMUNDA_NS)
      .build();

    typeBuilder.build();
  }
View Full Code Here

Examples of org.camunda.bpm.model.xml.type.ModelElementTypeBuilder.stringAttribute()

        public CamundaProperty newInstance(ModelTypeInstanceContext instanceContext) {
          return new CamundaPropertyImpl(instanceContext);
        }
      });

    camundaIdAttribute = typeBuilder.stringAttribute(CAMUNDA_ATTRIBUTE_ID)
      .namespace(CAMUNDA_NS)
      .build();

    camundaNameAttribute = typeBuilder.stringAttribute(CAMUNDA_ATTRIBUTE_NAME)
      .namespace(CAMUNDA_NS)
View Full Code Here

Examples of org.camunda.bpm.model.xml.type.ModelElementTypeBuilder.stringAttribute()

    camundaIdAttribute = typeBuilder.stringAttribute(CAMUNDA_ATTRIBUTE_ID)
      .namespace(CAMUNDA_NS)
      .build();

    camundaNameAttribute = typeBuilder.stringAttribute(CAMUNDA_ATTRIBUTE_NAME)
      .namespace(CAMUNDA_NS)
      .build();

    camundaValueAttribute = typeBuilder.stringAttribute(CAMUNDA_ATTRIBUTE_VALUE)
      .namespace(CAMUNDA_NS)
View Full Code Here

Examples of org.camunda.bpm.model.xml.type.ModelElementTypeBuilder.stringAttribute()

    camundaNameAttribute = typeBuilder.stringAttribute(CAMUNDA_ATTRIBUTE_NAME)
      .namespace(CAMUNDA_NS)
      .build();

    camundaValueAttribute = typeBuilder.stringAttribute(CAMUNDA_ATTRIBUTE_VALUE)
      .namespace(CAMUNDA_NS)
      .build();

    typeBuilder.build();
  }
View Full Code Here

Examples of org.camunda.bpm.model.xml.type.ModelElementTypeBuilder.stringAttribute()

        public EscalationEventDefinition newInstance(ModelTypeInstanceContext instanceContext) {
          return new EscalationEventDefinitionImpl(instanceContext);
        }
      });

    escalationRefAttribute = typeBuilder.stringAttribute(BPMN_ATTRIBUTE_ESCALATION_REF)
      .qNameAttributeReference(Escalation.class)
      .build();

    typeBuilder.build();
  }
View Full Code Here

Examples of org.camunda.bpm.model.xml.type.ModelElementTypeBuilder.stringAttribute()

        public InputSet newInstance(ModelTypeInstanceContext instanceContext) {
          return new InputSetImpl(instanceContext);
        }
      });

    nameAttribute = typeBuilder.stringAttribute("name")
      .build();

    SequenceBuilder sequenceBuilder = typeBuilder.sequence();

    dataInputDataInputRefsCollection = sequenceBuilder.elementCollection(DataInputRefs.class)
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.