/** */ package org.eclipse.gmf.tooling.examples.linklf.impl; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.gmf.tooling.examples.linklf.Link; import org.eclipse.gmf.tooling.examples.linklf.LinklfPackage; import org.eclipse.gmf.tooling.examples.linklf.Node; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Link</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.eclipse.gmf.tooling.examples.linklf.impl.LinkImpl#getSource <em>Source</em>}</li> * <li>{@link org.eclipse.gmf.tooling.examples.linklf.impl.LinkImpl#getTarget <em>Target</em>}</li> * </ul> * </p> * * @generated */ public class LinkImpl extends CanvasElementImpl implements Link { /** * The cached value of the '{@link #getSource() <em>Source</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getSource() * @generated * @ordered */ protected Node source; /** * The cached value of the '{@link #getTarget() <em>Target</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getTarget() * @generated * @ordered */ protected Node target; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected LinkImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return LinklfPackage.Literals.LINK; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Node getSource() { if (source != null && source.eIsProxy()) { InternalEObject oldSource = (InternalEObject)source; source = (Node)eResolveProxy(oldSource); if (source != oldSource) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, LinklfPackage.LINK__SOURCE, oldSource, source)); } } return source; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Node basicGetSource() { return source; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setSource(Node newSource) { Node oldSource = source; source = newSource; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, LinklfPackage.LINK__SOURCE, oldSource, source)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Node getTarget() { if (target != null && target.eIsProxy()) { InternalEObject oldTarget = (InternalEObject)target; target = (Node)eResolveProxy(oldTarget); if (target != oldTarget) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, LinklfPackage.LINK__TARGET, oldTarget, target)); } } return target; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Node basicGetTarget() { return target; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setTarget(Node newTarget) { Node oldTarget = target; target = newTarget; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, LinklfPackage.LINK__TARGET, oldTarget, target)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case LinklfPackage.LINK__SOURCE: if (resolve) return getSource(); return basicGetSource(); case LinklfPackage.LINK__TARGET: if (resolve) return getTarget(); return basicGetTarget(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case LinklfPackage.LINK__SOURCE: setSource((Node)newValue); return; case LinklfPackage.LINK__TARGET: setTarget((Node)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case LinklfPackage.LINK__SOURCE: setSource((Node)null); return; case LinklfPackage.LINK__TARGET: setTarget((Node)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case LinklfPackage.LINK__SOURCE: return source != null; case LinklfPackage.LINK__TARGET: return target != null; } return super.eIsSet(featureID); } } //LinkImpl