/** */ package ftp.impl; import ftp.FtpPackage; import ftp.Port; import ftp.PortValue; import ftp.TypedPortValue; 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.MinimalEObjectImpl; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Port Value</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link ftp.impl.PortValueImpl#getPort <em>Port</em>}</li> * <li>{@link ftp.impl.PortValueImpl#getValue <em>Value</em>}</li> * </ul> * * @generated */ public class PortValueImpl extends MinimalEObjectImpl.Container implements PortValue { /** * The cached value of the '{@link #getPort() <em>Port</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getPort() * @generated * @ordered */ protected Port port; /** * The cached value of the '{@link #getValue() <em>Value</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getValue() * @generated * @ordered */ protected TypedPortValue value; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected PortValueImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return FtpPackage.Literals.PORT_VALUE; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public TypedPortValue getValue() { return value; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetValue(TypedPortValue newValue, NotificationChain msgs) { TypedPortValue oldValue = value; value = newValue; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, FtpPackage.PORT_VALUE__VALUE, oldValue, newValue); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setValue(TypedPortValue newValue) { if (newValue != value) { NotificationChain msgs = null; if (value != null) msgs = ((InternalEObject)value).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - FtpPackage.PORT_VALUE__VALUE, null, msgs); if (newValue != null) msgs = ((InternalEObject)newValue).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - FtpPackage.PORT_VALUE__VALUE, null, msgs); msgs = basicSetValue(newValue, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, FtpPackage.PORT_VALUE__VALUE, newValue, newValue)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case FtpPackage.PORT_VALUE__VALUE: return basicSetValue(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Port getPort() { if (port != null && port.eIsProxy()) { InternalEObject oldPort = (InternalEObject)port; port = (Port)eResolveProxy(oldPort); if (port != oldPort) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, FtpPackage.PORT_VALUE__PORT, oldPort, port)); } } return port; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Port basicGetPort() { return port; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setPort(Port newPort) { Port oldPort = port; port = newPort; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, FtpPackage.PORT_VALUE__PORT, oldPort, port)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case FtpPackage.PORT_VALUE__PORT: if (resolve) return getPort(); return basicGetPort(); case FtpPackage.PORT_VALUE__VALUE: return getValue(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case FtpPackage.PORT_VALUE__PORT: setPort((Port)newValue); return; case FtpPackage.PORT_VALUE__VALUE: setValue((TypedPortValue)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case FtpPackage.PORT_VALUE__PORT: setPort((Port)null); return; case FtpPackage.PORT_VALUE__VALUE: setValue((TypedPortValue)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case FtpPackage.PORT_VALUE__PORT: return port != null; case FtpPackage.PORT_VALUE__VALUE: return value != null; } return super.eIsSet(featureID); } } //PortValueImpl