/** */ 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.yakindu.base.expressions.expressions.Expression; import org.yakindu.base.types.impl.PropertyImpl; import org.yakindu.sct.model.stext.stext.StextPackage; import org.yakindu.sct.model.stext.stext.VariableDefinition; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Variable Definition</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.yakindu.sct.model.stext.stext.impl.VariableDefinitionImpl#getInitialValue <em>Initial Value</em>}</li> * </ul> * * @generated */ public class VariableDefinitionImpl extends PropertyImpl implements VariableDefinition { /** * The cached value of the '{@link #getInitialValue() <em>Initial Value</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getInitialValue() * @generated * @ordered */ protected Expression initialValue; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected VariableDefinitionImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return StextPackage.Literals.VARIABLE_DEFINITION; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Expression getInitialValue() { return initialValue; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetInitialValue(Expression newInitialValue, NotificationChain msgs) { Expression oldInitialValue = initialValue; initialValue = newInitialValue; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, StextPackage.VARIABLE_DEFINITION__INITIAL_VALUE, oldInitialValue, newInitialValue); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setInitialValue(Expression newInitialValue) { if (newInitialValue != initialValue) { NotificationChain msgs = null; if (initialValue != null) msgs = ((InternalEObject)initialValue).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - StextPackage.VARIABLE_DEFINITION__INITIAL_VALUE, null, msgs); if (newInitialValue != null) msgs = ((InternalEObject)newInitialValue).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - StextPackage.VARIABLE_DEFINITION__INITIAL_VALUE, null, msgs); msgs = basicSetInitialValue(newInitialValue, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, StextPackage.VARIABLE_DEFINITION__INITIAL_VALUE, newInitialValue, newInitialValue)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case StextPackage.VARIABLE_DEFINITION__INITIAL_VALUE: return basicSetInitialValue(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.VARIABLE_DEFINITION__INITIAL_VALUE: return getInitialValue(); } 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.VARIABLE_DEFINITION__INITIAL_VALUE: setInitialValue((Expression)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case StextPackage.VARIABLE_DEFINITION__INITIAL_VALUE: setInitialValue((Expression)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case StextPackage.VARIABLE_DEFINITION__INITIAL_VALUE: return initialValue != null; } return super.eIsSet(featureID); } } //VariableDefinitionImpl