Package eu.admire.dispel.references

Examples of eu.admire.dispel.references.Reference


   * <!-- end-user-doc -->
   * @generated
   */
  public Reference getPrevious() {
    if ( eContainer() instanceof eu.admire.dispel.references.Reference ) {
           Reference container = (Reference) eContainer( ) ;
            if (this.equals(container.getNext())) {
             return container;
           }
    }
    return null;
  }
View Full Code Here


   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetInitialValue(Reference newInitialValue, NotificationChain msgs) {
    Reference oldInitialValue = initialValue;
    initialValue = newInitialValue;
    if (eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, ParametersPackage.PROCESSING_ELEMENT_PARAMETER__INITIAL_VALUE, oldInitialValue, newInitialValue);
      if (msgs == null) msgs = notification; else msgs.add(notification);
    }
View Full Code Here

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetReturnValue(Reference newReturnValue, NotificationChain msgs) {
    Reference oldReturnValue = returnValue;
    returnValue = newReturnValue;
    if (eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, StatementsPackage.RETURN__RETURN_VALUE, oldReturnValue, newReturnValue);
      if (msgs == null) msgs = notification; else msgs.add(notification);
    }
View Full Code Here

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetNext(Reference newNext, NotificationChain msgs) {
    Reference oldNext = next;
    next = newNext;
    if (eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, CorePackage.PROCESSING_ELEMENT_ANONYMOUS_DEFINITION__NEXT, oldNext, newNext);
      if (msgs == null) msgs = notification; else msgs.add(notification);
    }
View Full Code Here

   * <!-- end-user-doc -->
   * @generated
   */
  public Reference getPrevious() {
    if ( eContainer() instanceof eu.admire.dispel.references.Reference ) {
           Reference container = (Reference) eContainer( ) ;
            if (this.equals(container.getNext())) {
             return container;
           }
    }
    return null;
  }
View Full Code Here

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetNext(Reference newNext, NotificationChain msgs) {
    Reference oldNext = next;
    next = newNext;
    if (eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, ReferencesPackage.REFERENCE__NEXT, oldNext, newNext);
      if (msgs == null) msgs = notification; else msgs.add(notification);
    }
View Full Code Here

   * <!-- end-user-doc -->
   * @generated
   */
  public Reference getPrevious() {
    if ( eContainer() instanceof eu.admire.dispel.references.Reference ) {
           Reference container = (Reference) eContainer( ) ;
            if (this.equals(container.getNext())) {
             return container;
           }
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of eu.admire.dispel.references.Reference

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.