Examples of PartnerLink


Examples of org.eclipse.bpel.model.PartnerLink

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setPartnerLink(PartnerLink newPartnerLink) {
    PartnerLink oldPartnerLink = partnerLink;
    partnerLink = newPartnerLink;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, BPELPackage.PARTNER_ACTIVITY__PARTNER_LINK, oldPartnerLink, partnerLink));
  }
View Full Code Here

Examples of org.eclipse.bpel.model.PartnerLink

            return getPortTypeGen();
        } else {
            // portType is now optional. If the user hasn't set it, then
            // infer it from the partnerLink attribute and the
            // direction of this activity.
            PartnerLink link = getPartnerLink();
            if (link != null) {
                Role role = null;
                if (this instanceof Invoke) {
                    role = link.getPartnerRole();
                } else {
                    role = link.getMyRole();
                }
                if (role != null) {
                  portType = (PortType)role.getPortType();
                }
            }
View Full Code Here

Examples of org.eclipse.bpel.model.PartnerLink

            return getPortTypeGen();
        } else {
            // portType is now optional. If the user hasn't set it, then
            // infer it from the partnerLink attribute and the
            // direction of this activity.
            PartnerLink link = getPartnerLink();
            if (link != null) {
                Role role = link.getMyRole();
                if (role != null) {
                  portType = (PortType)role.getPortType();
                }
            }
            return portType;
View Full Code Here

Examples of org.eclipse.bpel.model.PartnerLink

  protected Element partnerLinks2XML(PartnerLinks partnerLinks) {
    Element partnerLinksElement = createBPELElement("partnerLinks");
   
    Iterator it = partnerLinks.getChildren().iterator();
    while (it.hasNext()) {
      PartnerLink partnerLink = (PartnerLink)it.next();
      partnerLinksElement.appendChild(partnerLink2XML(partnerLink));
    }
    // serialize local namespace prefixes to XML
    bpelNamespacePrefixManager.serializePrefixes(partnerLinks, partnerLinksElement);     
    extensibleElement2XML(partnerLinks, partnerLinksElement);
View Full Code Here

Examples of org.eclipse.bpel.model.PartnerLink

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setPartnerLink(PartnerLink newPartnerLink) {
    PartnerLink oldPartnerLink = partnerLink;
    partnerLink = newPartnerLink;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, BPELPackage.TO__PARTNER_LINK, oldPartnerLink, partnerLink));
  }
View Full Code Here

Examples of org.eclipse.bpel.model.PartnerLink

       
     
      if (partnerLinks != null) {
        Iterator<?> it = partnerLinks.getChildren().iterator();
        while (it.hasNext()) {
          PartnerLink pl = (PartnerLink)it.next();
          if (pl.getName().equals(partnerLinkName))
            return pl;
        }
      }
     
      container = container.eContainer()
View Full Code Here

Examples of org.eclipse.bpel.model.PartnerLink

            return getPortTypeGen();
        } else {
            // portType is now optional. If the user hasn't set it, then
            // infer it from the partnerLink attribute and the
            // direction of this activity.
            PartnerLink link = getPartnerLink();
            if (link != null) {
                Role role = link.getMyRole();
                if (role != null) {
                  portType = (PortType)role.getPortType();
                }
            }
            return portType;
View Full Code Here

Examples of org.eclipse.bpel.model.PartnerLink

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setPartnerLink(PartnerLink newPartnerLink) {
    PartnerLink oldPartnerLink = partnerLink;
    partnerLink = newPartnerLink;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, BPELPackage.ON_MESSAGE__PARTNER_LINK, oldPartnerLink, partnerLink));
  }
View Full Code Here

Examples of org.eclipse.bpel.model.PartnerLink

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setPartnerLink(PartnerLink newPartnerLink) {
    PartnerLink oldPartnerLink = partnerLink;
    partnerLink = newPartnerLink;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, BPELPackage.FROM__PARTNER_LINK, oldPartnerLink, partnerLink));
  }
View Full Code Here

Examples of org.eclipse.bpel.model.PartnerLink

        if (result == null) result = caseWSDLElement(process);
        if (result == null) result = defaultCase(theEObject);
        return result;
      }
      case BPELPackage.PARTNER_LINK: {
        PartnerLink partnerLink = (PartnerLink)theEObject;
        Object result = casePartnerLink(partnerLink);
        if (result == null) result = caseExtensibleElement(partnerLink);
        if (result == null) result = caseExtensibleElement_1(partnerLink);
        if (result == null) result = caseWSDLElement(partnerLink);
        if (result == null) result = defaultCase(theEObject);
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.