/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.bpel.fnmeta.model.impl; import org.eclipse.bpel.fnmeta.model.FMPackage; import org.eclipse.bpel.fnmeta.model.Option; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; /** * <!-- 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 org.eclipse.bpel.fnmeta.model.impl.OptionImpl#getValue <em>Value</em>}</li> * <li>{@link org.eclipse.bpel.fnmeta.model.impl.OptionImpl#getDisplayValue <em>Display Value</em>}</li> * </ul> * </p> * * @generated */ public class OptionImpl extends FacadeElementImpl implements Option { /** * 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 default value of the '{@link #getDisplayValue() <em>Display Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getDisplayValue() * @generated * @ordered */ protected static final String DISPLAY_VALUE_EDEFAULT = null; /** * The cached value of the '{@link #getDisplayValue() <em>Display Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getDisplayValue() * @generated * @ordered */ protected String displayValue = DISPLAY_VALUE_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected OptionImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return FMPackage.Literals.OPTION; } /** * <!-- 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, FMPackage.OPTION__VALUE, oldValue, value)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getDisplayValue() { return displayValue; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setDisplayValue(String newDisplayValue) { String oldDisplayValue = displayValue; displayValue = newDisplayValue; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, FMPackage.OPTION__DISPLAY_VALUE, oldDisplayValue, displayValue)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case FMPackage.OPTION__VALUE: return getValue(); case FMPackage.OPTION__DISPLAY_VALUE: return getDisplayValue(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case FMPackage.OPTION__VALUE: setValue((String)newValue); return; case FMPackage.OPTION__DISPLAY_VALUE: setDisplayValue((String)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case FMPackage.OPTION__VALUE: setValue(VALUE_EDEFAULT); return; case FMPackage.OPTION__DISPLAY_VALUE: setDisplayValue(DISPLAY_VALUE_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case FMPackage.OPTION__VALUE: return VALUE_EDEFAULT == null ? value != null : !VALUE_EDEFAULT.equals(value); case FMPackage.OPTION__DISPLAY_VALUE: return DISPLAY_VALUE_EDEFAULT == null ? displayValue != null : !DISPLAY_VALUE_EDEFAULT.equals(displayValue); } return super.eIsSet(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (value: "); result.append(value); result.append(", displayValue: "); result.append(displayValue); result.append(')'); return result.toString(); } } //OptionImpl