/** * * * * $Id$ */ package net.opengis.wps.impl; import net.opengis.wps.DataType; import net.opengis.wps.OutputDataType; import net.opengis.wps.OutputReferenceType; import net.opengis.wps.WpsPackage; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.common.notify.NotificationChain; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; /** * * An implementation of the model object 'Output Data Type'. * *

* The following features are implemented: *

*

* * @generated */ public class OutputDataTypeImpl extends DescriptionTypeImpl implements OutputDataType { /** * The cached value of the '{@link #getReference() Reference}' containment reference. * * * @see #getReference() * @generated * @ordered */ protected OutputReferenceType reference; /** * The cached value of the '{@link #getData() Data}' containment reference. * * * @see #getData() * @generated * @ordered */ protected DataType data; /** * * * @generated */ protected OutputDataTypeImpl() { super(); } /** * * * @generated */ protected EClass eStaticClass() { return WpsPackage.eINSTANCE.getOutputDataType(); } /** * * * @generated */ public OutputReferenceType getReference() { return reference; } /** * * * @generated */ public NotificationChain basicSetReference(OutputReferenceType newReference, NotificationChain msgs) { OutputReferenceType oldReference = reference; reference = newReference; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, WpsPackage.OUTPUT_DATA_TYPE__REFERENCE, oldReference, newReference); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * * * @generated */ public void setReference(OutputReferenceType newReference) { if (newReference != reference) { NotificationChain msgs = null; if (reference != null) msgs = ((InternalEObject)reference).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - WpsPackage.OUTPUT_DATA_TYPE__REFERENCE, null, msgs); if (newReference != null) msgs = ((InternalEObject)newReference).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - WpsPackage.OUTPUT_DATA_TYPE__REFERENCE, null, msgs); msgs = basicSetReference(newReference, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, WpsPackage.OUTPUT_DATA_TYPE__REFERENCE, newReference, newReference)); } /** * * * @generated */ public DataType getData() { return data; } /** * * * @generated */ public NotificationChain basicSetData(DataType newData, NotificationChain msgs) { DataType oldData = data; data = newData; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, WpsPackage.OUTPUT_DATA_TYPE__DATA, oldData, newData); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * * * @generated */ public void setData(DataType newData) { if (newData != data) { NotificationChain msgs = null; if (data != null) msgs = ((InternalEObject)data).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - WpsPackage.OUTPUT_DATA_TYPE__DATA, null, msgs); if (newData != null) msgs = ((InternalEObject)newData).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - WpsPackage.OUTPUT_DATA_TYPE__DATA, null, msgs); msgs = basicSetData(newData, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, WpsPackage.OUTPUT_DATA_TYPE__DATA, newData, newData)); } /** * * * @generated */ public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case WpsPackage.OUTPUT_DATA_TYPE__REFERENCE: return basicSetReference(null, msgs); case WpsPackage.OUTPUT_DATA_TYPE__DATA: return basicSetData(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * * * @generated */ public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case WpsPackage.OUTPUT_DATA_TYPE__REFERENCE: return getReference(); case WpsPackage.OUTPUT_DATA_TYPE__DATA: return getData(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ public void eSet(int featureID, Object newValue) { switch (featureID) { case WpsPackage.OUTPUT_DATA_TYPE__REFERENCE: setReference((OutputReferenceType)newValue); return; case WpsPackage.OUTPUT_DATA_TYPE__DATA: setData((DataType)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ public void eUnset(int featureID) { switch (featureID) { case WpsPackage.OUTPUT_DATA_TYPE__REFERENCE: setReference((OutputReferenceType)null); return; case WpsPackage.OUTPUT_DATA_TYPE__DATA: setData((DataType)null); return; } super.eUnset(featureID); } /** * * * @generated */ public boolean eIsSet(int featureID) { switch (featureID) { case WpsPackage.OUTPUT_DATA_TYPE__REFERENCE: return reference != null; case WpsPackage.OUTPUT_DATA_TYPE__DATA: return data != null; } return super.eIsSet(featureID); } } //OutputDataTypeImpl