/** * * * * $Id$ */ package net.opengis.fes20.impl; import net.opengis.fes20.ComparisonOperatorType; import net.opengis.fes20.Fes20Package; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.emf.ecore.impl.EObjectImpl; /** * * An implementation of the model object 'Comparison Operator Type'. * *

* The following features are implemented: *

*

* * @generated */ public class ComparisonOperatorTypeImpl extends EObjectImpl implements ComparisonOperatorType { /** * The default value of the '{@link #getName() Name}' attribute. * * * @see #getName() * @generated * @ordered */ protected static final Object NAME_EDEFAULT = null; /** * The cached value of the '{@link #getName() Name}' attribute. * * * @see #getName() * @generated * @ordered */ protected Object name = NAME_EDEFAULT; /** * * * @generated */ protected ComparisonOperatorTypeImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return Fes20Package.Literals.COMPARISON_OPERATOR_TYPE; } /** * * * @generated */ public Object getName() { return name; } /** * * * @generated */ public void setName(Object newName) { Object oldName = name; name = newName; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, Fes20Package.COMPARISON_OPERATOR_TYPE__NAME, oldName, name)); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case Fes20Package.COMPARISON_OPERATOR_TYPE__NAME: return getName(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case Fes20Package.COMPARISON_OPERATOR_TYPE__NAME: setName(newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case Fes20Package.COMPARISON_OPERATOR_TYPE__NAME: setName(NAME_EDEFAULT); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case Fes20Package.COMPARISON_OPERATOR_TYPE__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name); } return super.eIsSet(featureID); } /** * * * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (name: "); result.append(name); result.append(')'); return result.toString(); } } //ComparisonOperatorTypeImpl