/** */ package org.yakindu.sct.model.stext.stext.impl; 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.yakindu.sct.model.stext.stext.StextPackage; import org.yakindu.sct.model.stext.stext.TransitionReaction; import org.yakindu.sct.model.stext.stext.TransitionSpecification; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Transition Specification</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.yakindu.sct.model.stext.stext.impl.TransitionSpecificationImpl#getReaction <em>Reaction</em>}</li> * </ul> * * @generated */ public class TransitionSpecificationImpl extends MinimalEObjectImpl.Container implements TransitionSpecification { /** * The cached value of the '{@link #getReaction() <em>Reaction</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getReaction() * @generated * @ordered */ protected TransitionReaction reaction; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected TransitionSpecificationImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return StextPackage.Literals.TRANSITION_SPECIFICATION; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public TransitionReaction getReaction() { return reaction; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetReaction(TransitionReaction newReaction, NotificationChain msgs) { TransitionReaction oldReaction = reaction; reaction = newReaction; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, StextPackage.TRANSITION_SPECIFICATION__REACTION, oldReaction, newReaction); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setReaction(TransitionReaction newReaction) { if (newReaction != reaction) { NotificationChain msgs = null; if (reaction != null) msgs = ((InternalEObject)reaction).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - StextPackage.TRANSITION_SPECIFICATION__REACTION, null, msgs); if (newReaction != null) msgs = ((InternalEObject)newReaction).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - StextPackage.TRANSITION_SPECIFICATION__REACTION, null, msgs); msgs = basicSetReaction(newReaction, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, StextPackage.TRANSITION_SPECIFICATION__REACTION, newReaction, newReaction)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case StextPackage.TRANSITION_SPECIFICATION__REACTION: return basicSetReaction(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 StextPackage.TRANSITION_SPECIFICATION__REACTION: return getReaction(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case StextPackage.TRANSITION_SPECIFICATION__REACTION: setReaction((TransitionReaction)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case StextPackage.TRANSITION_SPECIFICATION__REACTION: setReaction((TransitionReaction)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case StextPackage.TRANSITION_SPECIFICATION__REACTION: return reaction != null; } return super.eIsSet(featureID); } } //TransitionSpecificationImpl