/** */ package fr.inria.diverse.minilang.impl; import fr.inria.diverse.minilang.IntComparison; import fr.inria.diverse.minilang.IntExpression; import fr.inria.diverse.minilang.MinilangPackage; 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; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Int Comparison</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link fr.inria.diverse.minilang.impl.IntComparisonImpl#getRight <em>Right</em>}</li> * <li>{@link fr.inria.diverse.minilang.impl.IntComparisonImpl#getLeft <em>Left</em>}</li> * </ul> * * @generated */ public abstract class IntComparisonImpl extends BooleanExpressionImpl implements IntComparison { /** * The cached value of the '{@link #getRight() <em>Right</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getRight() * @generated * @ordered */ protected IntExpression right; /** * The cached value of the '{@link #getLeft() <em>Left</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getLeft() * @generated * @ordered */ protected IntExpression left; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected IntComparisonImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return MinilangPackage.Literals.INT_COMPARISON; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public IntExpression getRight() { return right; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetRight(IntExpression newRight, NotificationChain msgs) { IntExpression oldRight = right; right = newRight; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, MinilangPackage.INT_COMPARISON__RIGHT, oldRight, newRight); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setRight(IntExpression newRight) { if (newRight != right) { NotificationChain msgs = null; if (right != null) msgs = ((InternalEObject)right).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - MinilangPackage.INT_COMPARISON__RIGHT, null, msgs); if (newRight != null) msgs = ((InternalEObject)newRight).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - MinilangPackage.INT_COMPARISON__RIGHT, null, msgs); msgs = basicSetRight(newRight, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, MinilangPackage.INT_COMPARISON__RIGHT, newRight, newRight)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public IntExpression getLeft() { return left; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetLeft(IntExpression newLeft, NotificationChain msgs) { IntExpression oldLeft = left; left = newLeft; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, MinilangPackage.INT_COMPARISON__LEFT, oldLeft, newLeft); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setLeft(IntExpression newLeft) { if (newLeft != left) { NotificationChain msgs = null; if (left != null) msgs = ((InternalEObject)left).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - MinilangPackage.INT_COMPARISON__LEFT, null, msgs); if (newLeft != null) msgs = ((InternalEObject)newLeft).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - MinilangPackage.INT_COMPARISON__LEFT, null, msgs); msgs = basicSetLeft(newLeft, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, MinilangPackage.INT_COMPARISON__LEFT, newLeft, newLeft)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case MinilangPackage.INT_COMPARISON__RIGHT: return basicSetRight(null, msgs); case MinilangPackage.INT_COMPARISON__LEFT: return basicSetLeft(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case MinilangPackage.INT_COMPARISON__RIGHT: return getRight(); case MinilangPackage.INT_COMPARISON__LEFT: return getLeft(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case MinilangPackage.INT_COMPARISON__RIGHT: setRight((IntExpression)newValue); return; case MinilangPackage.INT_COMPARISON__LEFT: setLeft((IntExpression)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case MinilangPackage.INT_COMPARISON__RIGHT: setRight((IntExpression)null); return; case MinilangPackage.INT_COMPARISON__LEFT: setLeft((IntExpression)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case MinilangPackage.INT_COMPARISON__RIGHT: return right != null; case MinilangPackage.INT_COMPARISON__LEFT: return left != null; } return super.eIsSet(featureID); } } //IntComparisonImpl