Package SmartGen.impl

Source Code of SmartGen.impl.OptionImpl

/**
* <copyright>
* </copyright>
*
* $Id$
*/
package SmartGen.impl;

import SmartGen.ConfigurableElement;
import SmartGen.Option;
import SmartGen.SmartGenPackage;

import org.eclipse.emf.common.notify.Notification;

import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.InternalEObject;

import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.impl.EObjectImpl;

/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Option</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
*   <li>{@link SmartGen.impl.OptionImpl#getName <em>Name</em>}</li>
*   <li>{@link SmartGen.impl.OptionImpl#getValue <em>Value</em>}</li>
*   <li>{@link SmartGen.impl.OptionImpl#getConfiguredElement <em>Configured Element</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class OptionImpl extends EObjectImpl implements Option {
  /**
   * The default value of the '{@link #getName() <em>Name</em>}' attribute.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @see #getName()
   * @generated
   * @ordered
   */
  protected static final String NAME_EDEFAULT = null;

  /**
   * The cached value of the '{@link #getName() <em>Name</em>}' attribute.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @see #getName()
   * @generated
   * @ordered
   */
  protected String name = NAME_EDEFAULT;

  /**
   * The default value of the '{@link #getValue() <em>Value</em>}' attribute.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @see #getValue()
   * @generated
   * @ordered
   */
  protected static final String VALUE_EDEFAULT = null;

  /**
   * The cached value of the '{@link #getValue() <em>Value</em>}' attribute.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @see #getValue()
   * @generated
   * @ordered
   */
  protected String value = VALUE_EDEFAULT;

  /**
   * The cached value of the '{@link #getConfiguredElement() <em>Configured Element</em>}' reference.
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @see #getConfiguredElement()
   * @generated
   * @ordered
   */
  protected ConfigurableElement configuredElement;

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  protected OptionImpl() {
    super();
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  protected EClass eStaticClass() {
    return SmartGenPackage.Literals.OPTION;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public String getName() {
    return name;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setName(String newName) {
    String oldName = name;
    name = newName;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, SmartGenPackage.OPTION__NAME, oldName, name));
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public String getValue() {
    return value;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setValue(String newValue) {
    String oldValue = value;
    value = newValue;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, SmartGenPackage.OPTION__VALUE, oldValue, value));
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public ConfigurableElement getConfiguredElement() {
    if (configuredElement != null && configuredElement.eIsProxy()) {
      InternalEObject oldConfiguredElement = (InternalEObject)configuredElement;
      configuredElement = (ConfigurableElement)eResolveProxy(oldConfiguredElement);
      if (configuredElement != oldConfiguredElement) {
        if (eNotificationRequired())
          eNotify(new ENotificationImpl(this, Notification.RESOLVE, SmartGenPackage.OPTION__CONFIGURED_ELEMENT, oldConfiguredElement, configuredElement));
      }
    }
    return configuredElement;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public ConfigurableElement basicGetConfiguredElement() {
    return configuredElement;
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setConfiguredElement(ConfigurableElement newConfiguredElement) {
    ConfigurableElement oldConfiguredElement = configuredElement;
    configuredElement = newConfiguredElement;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, SmartGenPackage.OPTION__CONFIGURED_ELEMENT, oldConfiguredElement, configuredElement));
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public Object eGet(int featureID, boolean resolve, boolean coreType) {
    switch (featureID) {
      case SmartGenPackage.OPTION__NAME:
        return getName();
      case SmartGenPackage.OPTION__VALUE:
        return getValue();
      case SmartGenPackage.OPTION__CONFIGURED_ELEMENT:
        if (resolve) return getConfiguredElement();
        return basicGetConfiguredElement();
    }
    return super.eGet(featureID, resolve, coreType);
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void eSet(int featureID, Object newValue) {
    switch (featureID) {
      case SmartGenPackage.OPTION__NAME:
        setName((String)newValue);
        return;
      case SmartGenPackage.OPTION__VALUE:
        setValue((String)newValue);
        return;
      case SmartGenPackage.OPTION__CONFIGURED_ELEMENT:
        setConfiguredElement((ConfigurableElement)newValue);
        return;
    }
    super.eSet(featureID, newValue);
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void eUnset(int featureID) {
    switch (featureID) {
      case SmartGenPackage.OPTION__NAME:
        setName(NAME_EDEFAULT);
        return;
      case SmartGenPackage.OPTION__VALUE:
        setValue(VALUE_EDEFAULT);
        return;
      case SmartGenPackage.OPTION__CONFIGURED_ELEMENT:
        setConfiguredElement((ConfigurableElement)null);
        return;
    }
    super.eUnset(featureID);
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public boolean eIsSet(int featureID) {
    switch (featureID) {
      case SmartGenPackage.OPTION__NAME:
        return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name);
      case SmartGenPackage.OPTION__VALUE:
        return VALUE_EDEFAULT == null ? value != null : !VALUE_EDEFAULT.equals(value);
      case SmartGenPackage.OPTION__CONFIGURED_ELEMENT:
        return configuredElement != null;
    }
    return super.eIsSet(featureID);
  }

  /**
   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public String toString() {
    if (eIsProxy()) return super.toString();

    StringBuffer result = new StringBuffer(super.toString());
    result.append(" (name: ");
    result.append(name);
    result.append(", value: ");
    result.append(value);
    result.append(')');
    return result.toString();
  }

} //OptionImpl
TOP

Related Classes of SmartGen.impl.OptionImpl

TOP
Copyright © 2018 www.massapi.com. 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.