| 1 | /** |
| 2 | * <copyright> |
| 3 | * </copyright> |
| 4 | * |
| 5 | * $Id$ |
| 6 | */ |
| 7 | package de.uka.ipd.sdq.dsexplore.qml.contract.QMLContract.impl; |
| 8 | |
| 9 | import de.uka.ipd.sdq.dsexplore.qml.contract.QMLContract.EnumLiteral; |
| 10 | import de.uka.ipd.sdq.dsexplore.qml.contract.QMLContract.QMLContractPackage; |
| 11 | |
| 12 | import de.uka.ipd.sdq.dsexplore.qml.contracttype.QMLContractType.Element; |
| 13 | |
| 14 | import org.eclipse.emf.common.notify.Notification; |
| 15 | |
| 16 | import org.eclipse.emf.ecore.EClass; |
| 17 | import org.eclipse.emf.ecore.InternalEObject; |
| 18 | |
| 19 | import org.eclipse.emf.ecore.impl.ENotificationImpl; |
| 20 | |
| 21 | /** |
| 22 | * <!-- begin-user-doc --> |
| 23 | * An implementation of the model object '<em><b>Enum Literal</b></em>'. |
| 24 | * <!-- end-user-doc --> |
| 25 | * <p> |
| 26 | * The following features are implemented: |
| 27 | * <ul> |
| 28 | * <li>{@link de.uka.ipd.sdq.dsexplore.qml.contract.QMLContract.impl.EnumLiteralImpl#getValue <em>Value</em>}</li> |
| 29 | * </ul> |
| 30 | * </p> |
| 31 | * |
| 32 | * @generated |
| 33 | */ |
| 34 | public class EnumLiteralImpl extends ValueLiteralImpl implements EnumLiteral { |
| 35 | /** |
| 36 | * The cached value of the '{@link #getValue() <em>Value</em>}' reference. |
| 37 | * <!-- begin-user-doc --> |
| 38 | * <!-- end-user-doc --> |
| 39 | * @see #getValue() |
| 40 | * @generated |
| 41 | * @ordered |
| 42 | */ |
| 43 | protected Element value; |
| 44 | |
| 45 | /** |
| 46 | * <!-- begin-user-doc --> |
| 47 | * <!-- end-user-doc --> |
| 48 | * @generated |
| 49 | */ |
| 50 | protected EnumLiteralImpl() { |
| 51 | super(); |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * <!-- begin-user-doc --> |
| 56 | * <!-- end-user-doc --> |
| 57 | * @generated |
| 58 | */ |
| 59 | @Override |
| 60 | protected EClass eStaticClass() { |
| 61 | return QMLContractPackage.Literals.ENUM_LITERAL; |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * <!-- begin-user-doc --> |
| 66 | * <!-- end-user-doc --> |
| 67 | * @generated |
| 68 | */ |
| 69 | public Element getValue() { |
| 70 | if (value != null && value.eIsProxy()) { |
| 71 | InternalEObject oldValue = (InternalEObject)value; |
| 72 | value = (Element)eResolveProxy(oldValue); |
| 73 | if (value != oldValue) { |
| 74 | if (eNotificationRequired()) |
| 75 | eNotify(new ENotificationImpl(this, Notification.RESOLVE, QMLContractPackage.ENUM_LITERAL__VALUE, oldValue, value)); |
| 76 | } |
| 77 | } |
| 78 | return value; |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * <!-- begin-user-doc --> |
| 83 | * <!-- end-user-doc --> |
| 84 | * @generated |
| 85 | */ |
| 86 | public Element basicGetValue() { |
| 87 | return value; |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * <!-- begin-user-doc --> |
| 92 | * <!-- end-user-doc --> |
| 93 | * @generated |
| 94 | */ |
| 95 | public void setValue(Element newValue) { |
| 96 | Element oldValue = value; |
| 97 | value = newValue; |
| 98 | if (eNotificationRequired()) |
| 99 | eNotify(new ENotificationImpl(this, Notification.SET, QMLContractPackage.ENUM_LITERAL__VALUE, oldValue, value)); |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * <!-- begin-user-doc --> |
| 104 | * <!-- end-user-doc --> |
| 105 | * @generated |
| 106 | */ |
| 107 | @Override |
| 108 | public Object eGet(int featureID, boolean resolve, boolean coreType) { |
| 109 | switch (featureID) { |
| 110 | case QMLContractPackage.ENUM_LITERAL__VALUE: |
| 111 | if (resolve) return getValue(); |
| 112 | return basicGetValue(); |
| 113 | } |
| 114 | return super.eGet(featureID, resolve, coreType); |
| 115 | } |
| 116 | |
| 117 | /** |
| 118 | * <!-- begin-user-doc --> |
| 119 | * <!-- end-user-doc --> |
| 120 | * @generated |
| 121 | */ |
| 122 | @Override |
| 123 | public void eSet(int featureID, Object newValue) { |
| 124 | switch (featureID) { |
| 125 | case QMLContractPackage.ENUM_LITERAL__VALUE: |
| 126 | setValue((Element)newValue); |
| 127 | return; |
| 128 | } |
| 129 | super.eSet(featureID, newValue); |
| 130 | } |
| 131 | |
| 132 | /** |
| 133 | * <!-- begin-user-doc --> |
| 134 | * <!-- end-user-doc --> |
| 135 | * @generated |
| 136 | */ |
| 137 | @Override |
| 138 | public void eUnset(int featureID) { |
| 139 | switch (featureID) { |
| 140 | case QMLContractPackage.ENUM_LITERAL__VALUE: |
| 141 | setValue((Element)null); |
| 142 | return; |
| 143 | } |
| 144 | super.eUnset(featureID); |
| 145 | } |
| 146 | |
| 147 | /** |
| 148 | * <!-- begin-user-doc --> |
| 149 | * <!-- end-user-doc --> |
| 150 | * @generated |
| 151 | */ |
| 152 | @Override |
| 153 | public boolean eIsSet(int featureID) { |
| 154 | switch (featureID) { |
| 155 | case QMLContractPackage.ENUM_LITERAL__VALUE: |
| 156 | return value != null; |
| 157 | } |
| 158 | return super.eIsSet(featureID); |
| 159 | } |
| 160 | |
| 161 | } //EnumLiteralImpl |