Package org.eclipse.bpel.model

Examples of org.eclipse.bpel.model.Documentation


        if (result == null) result = caseWSDLElement(extensibleElement);
        if (result == null) result = defaultCase(theEObject);
        return result;
      }
      case BPELPackage.DOCUMENTATION: {
        Documentation documentation = (Documentation)theEObject;
        Object result = caseDocumentation(documentation);
        if (result == null) result = defaultCase(theEObject);
        return result;
      }
      case BPELPackage.MESSAGE_EXCHANGES: {
View Full Code Here


   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetDocumentation(Documentation newDocumentation, NotificationChain msgs) {
    Documentation oldDocumentation = documentation;
    documentation = newDocumentation;
    boolean oldDocumentationESet = documentationESet;
    documentationESet = true;
    if (eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, BPELPackage.EXTENSIBLE_ELEMENT__DOCUMENTATION, oldDocumentation, newDocumentation, !oldDocumentationESet);
View Full Code Here

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicUnsetDocumentation(NotificationChain msgs) {
    Documentation oldDocumentation = documentation;
    documentation = null;
    boolean oldDocumentationESet = documentationESet;
    documentationESet = false;
    if (eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.UNSET, BPELPackage.EXTENSIBLE_ELEMENT__DOCUMENTATION, oldDocumentation, null, oldDocumentationESet);
View Full Code Here

TOP

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

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.