/** * * * * $Id$ */ package net.opengis.wps.impl; import net.opengis.wps.ComplexDataCombinationType; import net.opengis.wps.ComplexDataCombinationsType; import net.opengis.wps.SupportedComplexDataType; 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; import org.eclipse.emf.ecore.impl.EObjectImpl; /** * * An implementation of the model object 'Supported Complex Data Type'. * *

* The following features are implemented: *

*

* * @generated */ public class SupportedComplexDataTypeImpl extends EObjectImpl implements SupportedComplexDataType { /** * The cached value of the '{@link #getDefault() Default}' containment reference. * * * @see #getDefault() * @generated * @ordered */ protected ComplexDataCombinationType default_; /** * The cached value of the '{@link #getSupported() Supported}' containment reference. * * * @see #getSupported() * @generated * @ordered */ protected ComplexDataCombinationsType supported; /** * * * @generated */ protected SupportedComplexDataTypeImpl() { super(); } /** * * * @generated */ protected EClass eStaticClass() { return WpsPackage.eINSTANCE.getSupportedComplexDataType(); } /** * * * @generated */ public ComplexDataCombinationType getDefault() { return default_; } /** * * * @generated */ public NotificationChain basicSetDefault(ComplexDataCombinationType newDefault, NotificationChain msgs) { ComplexDataCombinationType oldDefault = default_; default_ = newDefault; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, WpsPackage.SUPPORTED_COMPLEX_DATA_TYPE__DEFAULT, oldDefault, newDefault); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * * * @generated */ public void setDefault(ComplexDataCombinationType newDefault) { if (newDefault != default_) { NotificationChain msgs = null; if (default_ != null) msgs = ((InternalEObject)default_).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - WpsPackage.SUPPORTED_COMPLEX_DATA_TYPE__DEFAULT, null, msgs); if (newDefault != null) msgs = ((InternalEObject)newDefault).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - WpsPackage.SUPPORTED_COMPLEX_DATA_TYPE__DEFAULT, null, msgs); msgs = basicSetDefault(newDefault, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, WpsPackage.SUPPORTED_COMPLEX_DATA_TYPE__DEFAULT, newDefault, newDefault)); } /** * * * @generated */ public ComplexDataCombinationsType getSupported() { return supported; } /** * * * @generated */ public NotificationChain basicSetSupported(ComplexDataCombinationsType newSupported, NotificationChain msgs) { ComplexDataCombinationsType oldSupported = supported; supported = newSupported; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, WpsPackage.SUPPORTED_COMPLEX_DATA_TYPE__SUPPORTED, oldSupported, newSupported); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * * * @generated */ public void setSupported(ComplexDataCombinationsType newSupported) { if (newSupported != supported) { NotificationChain msgs = null; if (supported != null) msgs = ((InternalEObject)supported).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - WpsPackage.SUPPORTED_COMPLEX_DATA_TYPE__SUPPORTED, null, msgs); if (newSupported != null) msgs = ((InternalEObject)newSupported).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - WpsPackage.SUPPORTED_COMPLEX_DATA_TYPE__SUPPORTED, null, msgs); msgs = basicSetSupported(newSupported, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, WpsPackage.SUPPORTED_COMPLEX_DATA_TYPE__SUPPORTED, newSupported, newSupported)); } /** * * * @generated */ public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case WpsPackage.SUPPORTED_COMPLEX_DATA_TYPE__DEFAULT: return basicSetDefault(null, msgs); case WpsPackage.SUPPORTED_COMPLEX_DATA_TYPE__SUPPORTED: return basicSetSupported(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * * * @generated */ public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case WpsPackage.SUPPORTED_COMPLEX_DATA_TYPE__DEFAULT: return getDefault(); case WpsPackage.SUPPORTED_COMPLEX_DATA_TYPE__SUPPORTED: return getSupported(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ public void eSet(int featureID, Object newValue) { switch (featureID) { case WpsPackage.SUPPORTED_COMPLEX_DATA_TYPE__DEFAULT: setDefault((ComplexDataCombinationType)newValue); return; case WpsPackage.SUPPORTED_COMPLEX_DATA_TYPE__SUPPORTED: setSupported((ComplexDataCombinationsType)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ public void eUnset(int featureID) { switch (featureID) { case WpsPackage.SUPPORTED_COMPLEX_DATA_TYPE__DEFAULT: setDefault((ComplexDataCombinationType)null); return; case WpsPackage.SUPPORTED_COMPLEX_DATA_TYPE__SUPPORTED: setSupported((ComplexDataCombinationsType)null); return; } super.eUnset(featureID); } /** * * * @generated */ public boolean eIsSet(int featureID) { switch (featureID) { case WpsPackage.SUPPORTED_COMPLEX_DATA_TYPE__DEFAULT: return default_ != null; case WpsPackage.SUPPORTED_COMPLEX_DATA_TYPE__SUPPORTED: return supported != null; } return super.eIsSet(featureID); } } //SupportedComplexDataTypeImpl