/** * * * * $Id$ */ package net.opengis.wps.impl; import net.opengis.wps.ValuesReferenceType; import net.opengis.wps.WpsPackage; 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 'Values Reference Type'. * *

* The following features are implemented: *

*

* * @generated */ public class ValuesReferenceTypeImpl extends EObjectImpl implements ValuesReferenceType { /** * The default value of the '{@link #getReference() Reference}' attribute. * * * @see #getReference() * @generated * @ordered */ protected static final String REFERENCE_EDEFAULT = null; /** * The cached value of the '{@link #getReference() Reference}' attribute. * * * @see #getReference() * @generated * @ordered */ protected String reference = REFERENCE_EDEFAULT; /** * The default value of the '{@link #getValuesForm() Values Form}' attribute. * * * @see #getValuesForm() * @generated * @ordered */ protected static final String VALUES_FORM_EDEFAULT = null; /** * The cached value of the '{@link #getValuesForm() Values Form}' attribute. * * * @see #getValuesForm() * @generated * @ordered */ protected String valuesForm = VALUES_FORM_EDEFAULT; /** * * * @generated */ protected ValuesReferenceTypeImpl() { super(); } /** * * * @generated */ protected EClass eStaticClass() { return WpsPackage.eINSTANCE.getValuesReferenceType(); } /** * * * @generated */ public String getReference() { return reference; } /** * * * @generated */ public void setReference(String newReference) { String oldReference = reference; reference = newReference; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, WpsPackage.VALUES_REFERENCE_TYPE__REFERENCE, oldReference, reference)); } /** * * * @generated */ public String getValuesForm() { return valuesForm; } /** * * * @generated */ public void setValuesForm(String newValuesForm) { String oldValuesForm = valuesForm; valuesForm = newValuesForm; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, WpsPackage.VALUES_REFERENCE_TYPE__VALUES_FORM, oldValuesForm, valuesForm)); } /** * * * @generated */ public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case WpsPackage.VALUES_REFERENCE_TYPE__REFERENCE: return getReference(); case WpsPackage.VALUES_REFERENCE_TYPE__VALUES_FORM: return getValuesForm(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ public void eSet(int featureID, Object newValue) { switch (featureID) { case WpsPackage.VALUES_REFERENCE_TYPE__REFERENCE: setReference((String)newValue); return; case WpsPackage.VALUES_REFERENCE_TYPE__VALUES_FORM: setValuesForm((String)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ public void eUnset(int featureID) { switch (featureID) { case WpsPackage.VALUES_REFERENCE_TYPE__REFERENCE: setReference(REFERENCE_EDEFAULT); return; case WpsPackage.VALUES_REFERENCE_TYPE__VALUES_FORM: setValuesForm(VALUES_FORM_EDEFAULT); return; } super.eUnset(featureID); } /** * * * @generated */ public boolean eIsSet(int featureID) { switch (featureID) { case WpsPackage.VALUES_REFERENCE_TYPE__REFERENCE: return REFERENCE_EDEFAULT == null ? reference != null : !REFERENCE_EDEFAULT.equals(reference); case WpsPackage.VALUES_REFERENCE_TYPE__VALUES_FORM: return VALUES_FORM_EDEFAULT == null ? valuesForm != null : !VALUES_FORM_EDEFAULT.equals(valuesForm); } return super.eIsSet(featureID); } /** * * * @generated */ public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (reference: "); result.append(reference); result.append(", valuesForm: "); result.append(valuesForm); result.append(')'); return result.toString(); } } //ValuesReferenceTypeImpl