Package net.cis.common.model.base

Examples of net.cis.common.model.base.AbstractVisual


   * <!-- end-user-doc -->
   * @generated
   */
  @Override
  public String getText(Object object) {
    AbstractVisual abstractVisual = (AbstractVisual)object;
    return getString("_UI_AbstractVisual_type") + " " + abstractVisual.getId();
  }
View Full Code Here


   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetVisual(AbstractVisual newVisual, NotificationChain msgs) {
    AbstractVisual oldVisual = visual;
    visual = newVisual;
    if (eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, BasePackage.ABSTRACT_NAMED_ENTITY__VISUAL, oldVisual, newVisual);
      if (msgs == null) msgs = notification; else msgs.add(notification);
    }
View Full Code Here

TOP

Related Classes of net.cis.common.model.base.AbstractVisual

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.