/** */ package de.gebit.integrity.dsl.impl; import de.gebit.integrity.dsl.DslPackage; import de.gebit.integrity.dsl.SuiteParameter; import de.gebit.integrity.dsl.ValueOrEnumValueOrOperationCollection; import de.gebit.integrity.dsl.VariableOrConstantEntity; 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; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Suite Parameter</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link de.gebit.integrity.dsl.impl.SuiteParameterImpl#getName <em>Name</em>}</li> * <li>{@link de.gebit.integrity.dsl.impl.SuiteParameterImpl#getValue <em>Value</em>}</li> * </ul> * * @generated */ public class SuiteParameterImpl extends MinimalEObjectImpl.Container implements SuiteParameter { /** * The cached value of the '{@link #getName() <em>Name</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getName() * @generated * @ordered */ protected VariableOrConstantEntity name; /** * The cached value of the '{@link #getValue() <em>Value</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getValue() * @generated * @ordered */ protected ValueOrEnumValueOrOperationCollection value; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected SuiteParameterImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return DslPackage.Literals.SUITE_PARAMETER; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public VariableOrConstantEntity getName() { if (name != null && name.eIsProxy()) { InternalEObject oldName = (InternalEObject)name; name = (VariableOrConstantEntity)eResolveProxy(oldName); if (name != oldName) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, DslPackage.SUITE_PARAMETER__NAME, oldName, name)); } } return name; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public VariableOrConstantEntity basicGetName() { return name; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setName(VariableOrConstantEntity newName) { VariableOrConstantEntity oldName = name; name = newName; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, DslPackage.SUITE_PARAMETER__NAME, oldName, name)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ValueOrEnumValueOrOperationCollection getValue() { return value; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetValue(ValueOrEnumValueOrOperationCollection newValue, NotificationChain msgs) { ValueOrEnumValueOrOperationCollection oldValue = value; value = newValue; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, DslPackage.SUITE_PARAMETER__VALUE, oldValue, newValue); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setValue(ValueOrEnumValueOrOperationCollection newValue) { if (newValue != value) { NotificationChain msgs = null; if (value != null) msgs = ((InternalEObject)value).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - DslPackage.SUITE_PARAMETER__VALUE, null, msgs); if (newValue != null) msgs = ((InternalEObject)newValue).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - DslPackage.SUITE_PARAMETER__VALUE, null, msgs); msgs = basicSetValue(newValue, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, DslPackage.SUITE_PARAMETER__VALUE, newValue, newValue)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case DslPackage.SUITE_PARAMETER__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 DslPackage.SUITE_PARAMETER__NAME: if (resolve) return getName(); return basicGetName(); case DslPackage.SUITE_PARAMETER__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 DslPackage.SUITE_PARAMETER__NAME: setName((VariableOrConstantEntity)newValue); return; case DslPackage.SUITE_PARAMETER__VALUE: setValue((ValueOrEnumValueOrOperationCollection)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case DslPackage.SUITE_PARAMETER__NAME: setName((VariableOrConstantEntity)null); return; case DslPackage.SUITE_PARAMETER__VALUE: setValue((ValueOrEnumValueOrOperationCollection)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case DslPackage.SUITE_PARAMETER__NAME: return name != null; case DslPackage.SUITE_PARAMETER__VALUE: return value != null; } return super.eIsSet(featureID); } } //SuiteParameterImpl