/** * <copyright> * </copyright> * * $Id$ */ package no.hal.scxml.scxmlxt.impl; import no.hal.scxml.scxmlxt.AssignmentAction; import no.hal.scxml.scxmlxt.Expression; import no.hal.scxml.scxmlxt.ScxmlxtPackage; import no.hal.scxml.scxmlxt.VarDef; 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.EObjectImpl; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Assignment</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link no.hal.scxml.scxmlxt.impl.AssignmentActionImpl#getVar <em>Var</em>}</li> * <li>{@link no.hal.scxml.scxmlxt.impl.AssignmentActionImpl#getValue <em>Value</em>}</li> * </ul> * </p> * * @generated */ public class AssignmentActionImpl extends ActionImpl implements AssignmentAction { /** * The cached value of the '{@link #getVar() <em>Var</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getVar() * @generated * @ordered */ protected VarDef var; /** * The cached value of the '{@link #getValue() <em>Value</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getValue() * @generated * @ordered */ protected Expression value; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected AssignmentActionImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return ScxmlxtPackage.Literals.ASSIGNMENT_ACTION; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public VarDef getVar() { if (var != null && var.eIsProxy()) { InternalEObject oldVar = (InternalEObject)var; var = (VarDef)eResolveProxy(oldVar); if (var != oldVar) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, ScxmlxtPackage.ASSIGNMENT_ACTION__VAR, oldVar, var)); } } return var; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public VarDef basicGetVar() { return var; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setVar(VarDef newVar) { VarDef oldVar = var; var = newVar; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ScxmlxtPackage.ASSIGNMENT_ACTION__VAR, oldVar, var)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Expression getValue() { return value; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetValue(Expression newValue, NotificationChain msgs) { Expression oldValue = value; value = newValue; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, ScxmlxtPackage.ASSIGNMENT_ACTION__VALUE, oldValue, newValue); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setValue(Expression newValue) { if (newValue != value) { NotificationChain msgs = null; if (value != null) msgs = ((InternalEObject)value).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - ScxmlxtPackage.ASSIGNMENT_ACTION__VALUE, null, msgs); if (newValue != null) msgs = ((InternalEObject)newValue).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - ScxmlxtPackage.ASSIGNMENT_ACTION__VALUE, null, msgs); msgs = basicSetValue(newValue, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ScxmlxtPackage.ASSIGNMENT_ACTION__VALUE, newValue, newValue)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case ScxmlxtPackage.ASSIGNMENT_ACTION__VALUE: return basicSetValue(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 ScxmlxtPackage.ASSIGNMENT_ACTION__VAR: if (resolve) return getVar(); return basicGetVar(); case ScxmlxtPackage.ASSIGNMENT_ACTION__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 ScxmlxtPackage.ASSIGNMENT_ACTION__VAR: setVar((VarDef)newValue); return; case ScxmlxtPackage.ASSIGNMENT_ACTION__VALUE: setValue((Expression)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case ScxmlxtPackage.ASSIGNMENT_ACTION__VAR: setVar((VarDef)null); return; case ScxmlxtPackage.ASSIGNMENT_ACTION__VALUE: setValue((Expression)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case ScxmlxtPackage.ASSIGNMENT_ACTION__VAR: return var != null; case ScxmlxtPackage.ASSIGNMENT_ACTION__VALUE: return value != null; } return super.eIsSet(featureID); } } //AssignmentImpl