/** */ package net.certware.evidence.hugin.netDSL.impl; import net.certware.evidence.hugin.netDSL.NetDSLPackage; import net.certware.evidence.hugin.netDSL.TermExpression; import net.certware.evidence.hugin.netDSL.unaryExpression; 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>unary Expression</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link net.certware.evidence.hugin.netDSL.impl.unaryExpressionImpl#getExpr <em>Expr</em>}</li> * </ul> * </p> * * @generated */ public class unaryExpressionImpl extends multiplicativeExpressionImpl implements unaryExpression { /** * The cached value of the '{@link #getExpr() <em>Expr</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getExpr() * @generated * @ordered */ protected TermExpression expr; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected unaryExpressionImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return NetDSLPackage.Literals.UNARY_EXPRESSION; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public TermExpression getExpr() { return expr; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetExpr(TermExpression newExpr, NotificationChain msgs) { TermExpression oldExpr = expr; expr = newExpr; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, NetDSLPackage.UNARY_EXPRESSION__EXPR, oldExpr, newExpr); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setExpr(TermExpression newExpr) { if (newExpr != expr) { NotificationChain msgs = null; if (expr != null) msgs = ((InternalEObject)expr).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - NetDSLPackage.UNARY_EXPRESSION__EXPR, null, msgs); if (newExpr != null) msgs = ((InternalEObject)newExpr).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - NetDSLPackage.UNARY_EXPRESSION__EXPR, null, msgs); msgs = basicSetExpr(newExpr, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, NetDSLPackage.UNARY_EXPRESSION__EXPR, newExpr, newExpr)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case NetDSLPackage.UNARY_EXPRESSION__EXPR: return basicSetExpr(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 NetDSLPackage.UNARY_EXPRESSION__EXPR: return getExpr(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case NetDSLPackage.UNARY_EXPRESSION__EXPR: setExpr((TermExpression)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case NetDSLPackage.UNARY_EXPRESSION__EXPR: setExpr((TermExpression)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case NetDSLPackage.UNARY_EXPRESSION__EXPR: return expr != null; } return super.eIsSet(featureID); } } //unaryExpressionImpl