Package org.emftext.language.models

Examples of org.emftext.language.models.Color


   * <!-- end-user-doc -->
   * @generated
   */
  public void setHair(Color newHair)
  {
    Color oldHair = hair;
    hair = newHair == null ? HAIR_EDEFAULT : newHair;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, ModelsPackage.MODEL__HAIR, oldHair, hair));
  }
View Full Code Here


   * <!-- end-user-doc -->
   * @generated
   */
  public void setLips(Color newLips)
  {
    Color oldLips = lips;
    lips = newLips == null ? LIPS_EDEFAULT : newLips;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, ModelsPackage.MODEL__LIPS, oldLips, lips));
  }
View Full Code Here

   * <!-- end-user-doc -->
   * @generated
   */
  public void setEyes(Color newEyes)
  {
    Color oldEyes = eyes;
    eyes = newEyes == null ? EYES_EDEFAULT : newEyes;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, ModelsPackage.MODEL__EYES, oldEyes, eyes));
  }
View Full Code Here

TOP

Related Classes of org.emftext.language.models.Color

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.