/** */ package functionalarchitecture.impl; import functionalarchitecture.FunctionalInput; import functionalarchitecture.FunctionalOutput; import functionalarchitecture.FunctionalarchitecturePackage; import functionalarchitecture.InformationLink; 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; import org.eclipse.emf.ecore.util.EcoreUtil; /** * * An implementation of the model object 'Information Link'. * *

* The following features are implemented: *

* * * @generated */ public class InformationLinkImpl extends MinimalEObjectImpl.Container implements InformationLink { /** * The cached value of the '{@link #getTo() To}' reference. * * * @see #getTo() * @generated * @ordered */ protected FunctionalInput to; /** * * * @generated */ protected InformationLinkImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return FunctionalarchitecturePackage.Literals.INFORMATION_LINK; } /** * * * @generated */ @Override public FunctionalOutput getFrom() { if (eContainerFeatureID() != FunctionalarchitecturePackage.INFORMATION_LINK__FROM) return null; return (FunctionalOutput)eInternalContainer(); } /** * * * @generated */ public NotificationChain basicSetFrom(FunctionalOutput newFrom, NotificationChain msgs) { msgs = eBasicSetContainer((InternalEObject)newFrom, FunctionalarchitecturePackage.INFORMATION_LINK__FROM, msgs); return msgs; } /** * * * @generated */ @Override public void setFrom(FunctionalOutput newFrom) { if (newFrom != eInternalContainer() || (eContainerFeatureID() != FunctionalarchitecturePackage.INFORMATION_LINK__FROM && newFrom != null)) { if (EcoreUtil.isAncestor(this, newFrom)) throw new IllegalArgumentException("Recursive containment not allowed for " + toString()); NotificationChain msgs = null; if (eInternalContainer() != null) msgs = eBasicRemoveFromContainer(msgs); if (newFrom != null) msgs = ((InternalEObject)newFrom).eInverseAdd(this, FunctionalarchitecturePackage.FUNCTIONAL_OUTPUT__OUTGOING_LINKS, FunctionalOutput.class, msgs); msgs = basicSetFrom(newFrom, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, FunctionalarchitecturePackage.INFORMATION_LINK__FROM, newFrom, newFrom)); } /** * * * @generated */ @Override public FunctionalInput getTo() { if (to != null && to.eIsProxy()) { InternalEObject oldTo = (InternalEObject)to; to = (FunctionalInput)eResolveProxy(oldTo); if (to != oldTo) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, FunctionalarchitecturePackage.INFORMATION_LINK__TO, oldTo, to)); } } return to; } /** * * * @generated */ public FunctionalInput basicGetTo() { return to; } /** * * * @generated */ public NotificationChain basicSetTo(FunctionalInput newTo, NotificationChain msgs) { FunctionalInput oldTo = to; to = newTo; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, FunctionalarchitecturePackage.INFORMATION_LINK__TO, oldTo, newTo); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * * * @generated */ @Override public void setTo(FunctionalInput newTo) { if (newTo != to) { NotificationChain msgs = null; if (to != null) msgs = ((InternalEObject)to).eInverseRemove(this, FunctionalarchitecturePackage.FUNCTIONAL_INPUT__INCOMING_LINKS, FunctionalInput.class, msgs); if (newTo != null) msgs = ((InternalEObject)newTo).eInverseAdd(this, FunctionalarchitecturePackage.FUNCTIONAL_INPUT__INCOMING_LINKS, FunctionalInput.class, msgs); msgs = basicSetTo(newTo, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, FunctionalarchitecturePackage.INFORMATION_LINK__TO, newTo, newTo)); } /** * * * @generated */ @Override public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case FunctionalarchitecturePackage.INFORMATION_LINK__FROM: if (eInternalContainer() != null) msgs = eBasicRemoveFromContainer(msgs); return basicSetFrom((FunctionalOutput)otherEnd, msgs); case FunctionalarchitecturePackage.INFORMATION_LINK__TO: if (to != null) msgs = ((InternalEObject)to).eInverseRemove(this, FunctionalarchitecturePackage.FUNCTIONAL_INPUT__INCOMING_LINKS, FunctionalInput.class, msgs); return basicSetTo((FunctionalInput)otherEnd, msgs); } return super.eInverseAdd(otherEnd, featureID, msgs); } /** * * * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case FunctionalarchitecturePackage.INFORMATION_LINK__FROM: return basicSetFrom(null, msgs); case FunctionalarchitecturePackage.INFORMATION_LINK__TO: return basicSetTo(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * * * @generated */ @Override public NotificationChain eBasicRemoveFromContainerFeature(NotificationChain msgs) { switch (eContainerFeatureID()) { case FunctionalarchitecturePackage.INFORMATION_LINK__FROM: return eInternalContainer().eInverseRemove(this, FunctionalarchitecturePackage.FUNCTIONAL_OUTPUT__OUTGOING_LINKS, FunctionalOutput.class, msgs); } return super.eBasicRemoveFromContainerFeature(msgs); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case FunctionalarchitecturePackage.INFORMATION_LINK__FROM: return getFrom(); case FunctionalarchitecturePackage.INFORMATION_LINK__TO: if (resolve) return getTo(); return basicGetTo(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case FunctionalarchitecturePackage.INFORMATION_LINK__FROM: setFrom((FunctionalOutput)newValue); return; case FunctionalarchitecturePackage.INFORMATION_LINK__TO: setTo((FunctionalInput)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case FunctionalarchitecturePackage.INFORMATION_LINK__FROM: setFrom((FunctionalOutput)null); return; case FunctionalarchitecturePackage.INFORMATION_LINK__TO: setTo((FunctionalInput)null); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case FunctionalarchitecturePackage.INFORMATION_LINK__FROM: return getFrom() != null; case FunctionalarchitecturePackage.INFORMATION_LINK__TO: return to != null; } return super.eIsSet(featureID); } } //InformationLinkImpl