Package org.eclipse.emf.ecore.impl

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


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


   */
  public void setIsExtensional(boolean newIsExtensional) {
    boolean oldIsExtensional = isExtensional;
    isExtensional = newIsExtensional;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, OntoUMLPackage.COLLECTIVE__IS_EXTENSIONAL, oldIsExtensional, isExtensional));
  }
View Full Code Here

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

   */
  public void setLastRefresh(long newLastRefresh) {
    long oldLastRefresh = lastRefresh;
    lastRefresh = newLastRefresh;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, HadoopPackage.ZOO_KEEPER_SERVER__LAST_REFRESH, oldLastRefresh, lastRefresh));
  }
View Full Code Here

   */
  public void setRefreshing(boolean newRefreshing) {
    boolean oldRefreshing = refreshing;
    refreshing = newRefreshing;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, HadoopPackage.ZOO_KEEPER_SERVER__REFRESHING, oldRefreshing, refreshing));
  }
View Full Code Here

   */
  public void setEphermeral(boolean newEphermeral) {
    boolean oldEphermeral = ephermeral;
    ephermeral = newEphermeral;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, HadoopPackage.ZOO_KEEPER_SERVER__EPHERMERAL, oldEphermeral, ephermeral));
  }
View Full Code Here

   */
  public void setCreationId(long newCreationId) {
    long oldCreationId = creationId;
    creationId = newCreationId;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, HadoopPackage.ZOO_KEEPER_SERVER__CREATION_ID, oldCreationId, creationId));
  }
View Full Code Here

   */
  public void setModifiedId(long newModifiedId) {
    long oldModifiedId = modifiedId;
    modifiedId = newModifiedId;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, HadoopPackage.ZOO_KEEPER_SERVER__MODIFIED_ID, oldModifiedId, modifiedId));
  }
View Full Code Here

   */
  public void setCreationTime(long newCreationTime) {
    long oldCreationTime = creationTime;
    creationTime = newCreationTime;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, HadoopPackage.ZOO_KEEPER_SERVER__CREATION_TIME, oldCreationTime, creationTime));
  }
View Full Code Here

   */
  public void setModifiedTime(long newModifiedTime) {
    long oldModifiedTime = modifiedTime;
    modifiedTime = newModifiedTime;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, HadoopPackage.ZOO_KEEPER_SERVER__MODIFIED_TIME, oldModifiedTime, modifiedTime));
  }
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.