Package org.eclipse.bpel.model

Examples of org.eclipse.bpel.model.EndpointReferenceRole


   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public EndpointReferenceRole createEndpointReferenceRoleFromString(EDataType eDataType, String initialValue) {
    EndpointReferenceRole result = EndpointReferenceRole.get(initialValue);
    if (result == null) throw new IllegalArgumentException("The value '" + initialValue + "' is not a valid enumerator of '" + eDataType.getName() + "'");
    return result;
  }
View Full Code Here


   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setEndpointReference(EndpointReferenceRole newEndpointReference) {
    EndpointReferenceRole oldEndpointReference = endpointReference;
    endpointReference = newEndpointReference == null ? ENDPOINT_REFERENCE_EDEFAULT : newEndpointReference;
    boolean oldEndpointReferenceESet = endpointReferenceESet;
    endpointReferenceESet = true;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, BPELPackage.FROM__ENDPOINT_REFERENCE, oldEndpointReference, endpointReference, !oldEndpointReferenceESet));
View Full Code Here

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void unsetEndpointReference() {
    EndpointReferenceRole oldEndpointReference = endpointReference;
    boolean oldEndpointReferenceESet = endpointReferenceESet;
    endpointReference = ENDPOINT_REFERENCE_EDEFAULT;
    endpointReferenceESet = false;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.UNSET, BPELPackage.FROM__ENDPOINT_REFERENCE, oldEndpointReference, ENDPOINT_REFERENCE_EDEFAULT, oldEndpointReferenceESet));
View Full Code Here

TOP

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

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.