/** */ package org.archstudio.xadl3.implementation_3_0.impl; import java.util.Collection; import org.archstudio.xadl3.implementation_3_0.Implementation_3_0Package; import org.archstudio.xadl3.implementation_3_0.InitializationParameter; import org.archstudio.xadl3.xadlcore_3_0.Extension; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.common.notify.NotificationChain; import org.eclipse.emf.common.util.EList; 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.eclipse.emf.ecore.util.EObjectContainmentEList; import org.eclipse.emf.ecore.util.InternalEList; /** * <!-- begin-user-doc --> An implementation of the model object '<em><b>Initialization Parameter</b></em>'. <!-- * end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.archstudio.xadl3.implementation_3_0.impl.InitializationParameterImpl#getExt <em>Ext</em>}</li> * <li>{@link org.archstudio.xadl3.implementation_3_0.impl.InitializationParameterImpl#getKey <em>Key</em>}</li> * <li>{@link org.archstudio.xadl3.implementation_3_0.impl.InitializationParameterImpl#getValue <em>Value</em>}</li> * </ul> * * @generated */ public class InitializationParameterImpl extends MinimalEObjectImpl.Container implements InitializationParameter { /** * The cached value of the '{@link #getExt() <em>Ext</em>}' containment reference list. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @see #getExt() * @generated * @ordered */ protected EList<Extension> ext; /** * The default value of the '{@link #getKey() <em>Key</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc * --> * * @see #getKey() * @generated * @ordered */ protected static final String KEY_EDEFAULT = null; /** * The cached value of the '{@link #getKey() <em>Key</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc --> * * @see #getKey() * @generated * @ordered */ protected String key = KEY_EDEFAULT; /** * The default value of the '{@link #getValue() <em>Value</em>}' attribute. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @see #getValue() * @generated * @ordered */ protected static final String VALUE_EDEFAULT = null; /** * The cached value of the '{@link #getValue() <em>Value</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc * --> * * @see #getValue() * @generated * @ordered */ protected String value = VALUE_EDEFAULT; /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ protected InitializationParameterImpl() { super(); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override protected EClass eStaticClass() { return Implementation_3_0Package.Literals.INITIALIZATION_PARAMETER; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override public EList<Extension> getExt() { if (ext == null) { ext = new EObjectContainmentEList<Extension>(Extension.class, this, Implementation_3_0Package.INITIALIZATION_PARAMETER__EXT); } return ext; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override public String getKey() { return key; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override public void setKey(String newKey) { String oldKey = key; key = newKey; if (eNotificationRequired()) { eNotify(new ENotificationImpl(this, Notification.SET, Implementation_3_0Package.INITIALIZATION_PARAMETER__KEY, oldKey, key)); } } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override public String getValue() { return value; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override public void setValue(String newValue) { String oldValue = value; value = newValue; if (eNotificationRequired()) { eNotify(new ENotificationImpl(this, Notification.SET, Implementation_3_0Package.INITIALIZATION_PARAMETER__VALUE, oldValue, value)); } } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case Implementation_3_0Package.INITIALIZATION_PARAMETER__EXT: return ((InternalEList<?>) getExt()).basicRemove(otherEnd, 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 Implementation_3_0Package.INITIALIZATION_PARAMETER__EXT: return getExt(); case Implementation_3_0Package.INITIALIZATION_PARAMETER__KEY: return getKey(); case Implementation_3_0Package.INITIALIZATION_PARAMETER__VALUE: return getValue(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case Implementation_3_0Package.INITIALIZATION_PARAMETER__EXT: getExt().clear(); getExt().addAll((Collection<? extends Extension>) newValue); return; case Implementation_3_0Package.INITIALIZATION_PARAMETER__KEY: setKey((String) newValue); return; case Implementation_3_0Package.INITIALIZATION_PARAMETER__VALUE: setValue((String) newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case Implementation_3_0Package.INITIALIZATION_PARAMETER__EXT: getExt().clear(); return; case Implementation_3_0Package.INITIALIZATION_PARAMETER__KEY: setKey(KEY_EDEFAULT); return; case Implementation_3_0Package.INITIALIZATION_PARAMETER__VALUE: setValue(VALUE_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case Implementation_3_0Package.INITIALIZATION_PARAMETER__EXT: return ext != null && !ext.isEmpty(); case Implementation_3_0Package.INITIALIZATION_PARAMETER__KEY: return KEY_EDEFAULT == null ? key != null : !KEY_EDEFAULT.equals(key); case Implementation_3_0Package.INITIALIZATION_PARAMETER__VALUE: return VALUE_EDEFAULT == null ? value != null : !VALUE_EDEFAULT.equals(value); } return super.eIsSet(featureID); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override public String toString() { if (eIsProxy()) { return super.toString(); } StringBuffer result = new StringBuffer(super.toString()); result.append(" (key: "); result.append(key); result.append(", value: "); result.append(value); result.append(')'); return result.toString(); } } // InitializationParameterImpl