Package org.eclipse.emf.ecore.impl

Examples of org.eclipse.emf.ecore.impl.ENotificationImpl


   */
  public void setIsEssential(boolean newIsEssential) {
    boolean oldIsEssential = isEssential;
    isEssential = newIsEssential;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, OntoUMLPackage.MERONYMIC__IS_ESSENTIAL, oldIsEssential, isEssential));
  }
View Full Code Here


   */
  public void setIsInseparable(boolean newIsInseparable) {
    boolean oldIsInseparable = isInseparable;
    isInseparable = newIsInseparable;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, OntoUMLPackage.MERONYMIC__IS_INSEPARABLE, oldIsInseparable, isInseparable));
  }
View Full Code Here

   */
  public void setIsImmutablePart(boolean newIsImmutablePart) {
    boolean oldIsImmutablePart = isImmutablePart;
    isImmutablePart = newIsImmutablePart;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, OntoUMLPackage.MERONYMIC__IS_IMMUTABLE_PART, oldIsImmutablePart, isImmutablePart));
  }
View Full Code Here

   */
  public void setIsImmutableWhole(boolean newIsImmutableWhole) {
    boolean oldIsImmutableWhole = isImmutableWhole;
    isImmutableWhole = newIsImmutableWhole;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, OntoUMLPackage.MERONYMIC__IS_IMMUTABLE_WHOLE, oldIsImmutableWhole, isImmutableWhole));
  }
View Full Code Here

   */
  public void setName(String newName) {
    String oldName = name;
    name = newName;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, OntoUMLPackage.DIRECTED_BINARY_RELATIONSHIP__NAME, oldName, name));
  }
View Full Code Here

   */
  public void setIsAbstract(boolean newIsAbstract) {
    boolean oldIsAbstract = isAbstract;
    isAbstract = newIsAbstract;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, OntoUMLPackage.DIRECTED_BINARY_RELATIONSHIP__IS_ABSTRACT, oldIsAbstract, isAbstract));
  }
View Full Code Here

   */
  public void setName(String newName) {
    String oldName = name;
    name = newName;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, OntoUMLPackage.STRUCTURAL_FEATURE__NAME, oldName, name));
  }
View Full Code Here

   */
  public void setIsLeaf(boolean newIsLeaf) {
    boolean oldIsLeaf = isLeaf;
    isLeaf = newIsLeaf;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, OntoUMLPackage.STRUCTURAL_FEATURE__IS_LEAF, oldIsLeaf, isLeaf));
  }
View Full Code Here

   */
  public void setIsStatic(boolean newIsStatic) {
    boolean oldIsStatic = isStatic;
    isStatic = newIsStatic;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, OntoUMLPackage.STRUCTURAL_FEATURE__IS_STATIC, oldIsStatic, isStatic));
  }
View Full Code Here

    if (type != null && type.eIsProxy()) {
      InternalEObject oldType = (InternalEObject)type;
      type = (Type)eResolveProxy(oldType);
      if (type != oldType) {
        if (eNotificationRequired())
          eNotify(new ENotificationImpl(this, Notification.RESOLVE, OntoUMLPackage.STRUCTURAL_FEATURE__TYPE, oldType, type));
      }
    }
    return type;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.emf.ecore.impl.ENotificationImpl

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.