Package org.eclipse.bpel.model

Examples of org.eclipse.bpel.model.Branches


        if (result == null) result = caseWSDLElement(completionCondition);
        if (result == null) result = defaultCase(theEObject);
        return result;
      }
      case BPELPackage.BRANCHES: {
        Branches branches = (Branches)theEObject;
        Object result = caseBranches(branches);
        if (result == null) result = caseExpression(branches);
        if (result == null) result = caseExtensibilityElement(branches);
        if (result == null) result = caseWSDLElement(branches);
        if (result == null) result = caseIExtensibilityElement(branches);
View Full Code Here


   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetBranches(Branches newBranches, NotificationChain msgs) {
    Branches oldBranches = branches;
    branches = newBranches;
    if (eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, BPELPackage.COMPLETION_CONDITION__BRANCHES, oldBranches, newBranches);
      if (msgs == null) msgs = notification; else msgs.add(notification);
    }
View Full Code Here

TOP

Related Classes of org.eclipse.bpel.model.Branches

Copyright © 2018 www.massapicom. 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.