Package org.eclipse.bpel.model

Examples of org.eclipse.bpel.model.Activity


    faultHandler = BPELFactory.eINSTANCE.createFaultHandler();
  }
 
  @SuppressWarnings("unchecked")
  public void addActivity(Activity activity) {
    Activity a = getActivity();
    if (a == null){
      setActivity(activity);
    } else {
      if (a instanceof Sequence){
        Sequence seq = (Sequence)a;
View Full Code Here


   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetActivity(Activity newActivity, NotificationChain msgs) {
    Activity oldActivity = activity;
    activity = newActivity;
    if (eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, BPELPackage.FOR_EACH__ACTIVITY, oldActivity, newActivity);
      if (msgs == null) msgs = notification; else msgs.add(notification);
    }
View Full Code Here

TOP

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

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.