/** */ 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.sgraph.Scope; import org.yakindu.sct.model.stext.stext.StateSpecification; import org.yakindu.sct.model.stext.stext.StextPackage; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>State Specification</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.yakindu.sct.model.stext.stext.impl.StateSpecificationImpl#getScope <em>Scope</em>}</li> * </ul> * * @generated */ public class StateSpecificationImpl extends MinimalEObjectImpl.Container implements StateSpecification { /** * The cached value of the '{@link #getScope() <em>Scope</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getScope() * @generated * @ordered */ protected Scope scope; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected StateSpecificationImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return StextPackage.Literals.STATE_SPECIFICATION; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Scope getScope() { return scope; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetScope(Scope newScope, NotificationChain msgs) { Scope oldScope = scope; scope = newScope; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, StextPackage.STATE_SPECIFICATION__SCOPE, oldScope, newScope); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setScope(Scope newScope) { if (newScope != scope) { NotificationChain msgs = null; if (scope != null) msgs = ((InternalEObject)scope).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - StextPackage.STATE_SPECIFICATION__SCOPE, null, msgs); if (newScope != null) msgs = ((InternalEObject)newScope).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - StextPackage.STATE_SPECIFICATION__SCOPE, null, msgs); msgs = basicSetScope(newScope, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, StextPackage.STATE_SPECIFICATION__SCOPE, newScope, newScope)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case StextPackage.STATE_SPECIFICATION__SCOPE: return basicSetScope(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.STATE_SPECIFICATION__SCOPE: return getScope(); } 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.STATE_SPECIFICATION__SCOPE: setScope((Scope)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case StextPackage.STATE_SPECIFICATION__SCOPE: setScope((Scope)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case StextPackage.STATE_SPECIFICATION__SCOPE: return scope != null; } return super.eIsSet(featureID); } } //StateSpecificationImpl