Examples of ItemAwareElement


Examples of org.eclipse.bpmn2.ItemAwareElement

            if (result == null)
                result = defaultCase(theEObject);
            return result;
        }
        case Bpmn2Package.ITEM_AWARE_ELEMENT: {
            ItemAwareElement itemAwareElement = (ItemAwareElement) theEObject;
            T result = caseItemAwareElement(itemAwareElement);
            if (result == null)
                result = caseBaseElement(itemAwareElement);
            if (result == null)
                result = defaultCase(theEObject);
View Full Code Here

Examples of org.eclipse.bpmn2.ItemAwareElement

     * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
     * @generated
     */
    public void setTargetRef(ItemAwareElement newTargetRef) {
        ItemAwareElement oldTargetRef = targetRef;
        targetRef = newTargetRef;
        if (eNotificationRequired())
            eNotify(new ENotificationImpl(this, Notification.SET,
                    Bpmn2Package.DATA_ASSOCIATION__TARGET_REF, oldTargetRef, targetRef));
    }
View Full Code Here

Examples of org.eclipse.bpmn2.ItemAwareElement

     * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
     * @generated
     */
    public void setLoopDataInputRef(ItemAwareElement newLoopDataInputRef) {
        ItemAwareElement oldLoopDataInputRef = loopDataInputRef;
        loopDataInputRef = newLoopDataInputRef;
        if (eNotificationRequired())
            eNotify(new ENotificationImpl(this, Notification.SET,
                    Bpmn2Package.MULTI_INSTANCE_LOOP_CHARACTERISTICS__LOOP_DATA_INPUT_REF,
                    oldLoopDataInputRef, loopDataInputRef));
View Full Code Here

Examples of org.eclipse.bpmn2.ItemAwareElement

     * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
     * @generated
     */
    public void setLoopDataOutputRef(ItemAwareElement newLoopDataOutputRef) {
        ItemAwareElement oldLoopDataOutputRef = loopDataOutputRef;
        loopDataOutputRef = newLoopDataOutputRef;
        if (eNotificationRequired())
            eNotify(new ENotificationImpl(this, Notification.SET,
                    Bpmn2Package.MULTI_INSTANCE_LOOP_CHARACTERISTICS__LOOP_DATA_OUTPUT_REF,
                    oldLoopDataOutputRef, loopDataOutputRef));
View Full Code Here

Examples of org.eclipse.bpmn2.ItemAwareElement

      se = elements.get(source);
      te = elements.get(target);
    } else if (bpmnElement instanceof DataAssociation) {
      // Data Association allows connections for multiple starting points, we don't support it yet
      List<ItemAwareElement> sourceRef = ((DataAssociation) bpmnElement).getSourceRef();
      ItemAwareElement targetRef = ((DataAssociation) bpmnElement).getTargetRef();
      if (sourceRef != null) {
        source = sourceRef.get(0);
      }
      target = targetRef;
      do {
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.