1 | /** |
2 | * <copyright> |
3 | * </copyright> |
4 | * |
5 | * $Id$ |
6 | */ |
7 | package LqnCore.impl; |
8 | |
9 | import LqnCore.LqnCorePackage; |
10 | import LqnCore.PragmaType; |
11 | |
12 | import org.eclipse.emf.common.notify.Notification; |
13 | |
14 | import org.eclipse.emf.ecore.EClass; |
15 | |
16 | import org.eclipse.emf.ecore.impl.ENotificationImpl; |
17 | import org.eclipse.emf.ecore.impl.EObjectImpl; |
18 | |
19 | /** |
20 | * <!-- begin-user-doc --> |
21 | * An implementation of the model object '<em><b>Pragma Type</b></em>'. |
22 | * <!-- end-user-doc --> |
23 | * <p> |
24 | * The following features are implemented: |
25 | * <ul> |
26 | * <li>{@link LqnCore.impl.PragmaTypeImpl#getParam <em>Param</em>}</li> |
27 | * <li>{@link LqnCore.impl.PragmaTypeImpl#getValue <em>Value</em>}</li> |
28 | * </ul> |
29 | * </p> |
30 | * |
31 | * @generated |
32 | */ |
33 | public class PragmaTypeImpl extends EObjectImpl implements PragmaType { |
34 | /** |
35 | * The default value of the '{@link #getParam() <em>Param</em>}' attribute. |
36 | * <!-- begin-user-doc --> |
37 | * <!-- end-user-doc --> |
38 | * @see #getParam() |
39 | * @generated |
40 | * @ordered |
41 | */ |
42 | protected static final String PARAM_EDEFAULT = null; |
43 | |
44 | /** |
45 | * The cached value of the '{@link #getParam() <em>Param</em>}' attribute. |
46 | * <!-- begin-user-doc --> |
47 | * <!-- end-user-doc --> |
48 | * @see #getParam() |
49 | * @generated |
50 | * @ordered |
51 | */ |
52 | protected String param = PARAM_EDEFAULT; |
53 | |
54 | /** |
55 | * The default value of the '{@link #getValue() <em>Value</em>}' attribute. |
56 | * <!-- begin-user-doc --> |
57 | * <!-- end-user-doc --> |
58 | * @see #getValue() |
59 | * @generated |
60 | * @ordered |
61 | */ |
62 | protected static final String VALUE_EDEFAULT = null; |
63 | |
64 | /** |
65 | * The cached value of the '{@link #getValue() <em>Value</em>}' attribute. |
66 | * <!-- begin-user-doc --> |
67 | * <!-- end-user-doc --> |
68 | * @see #getValue() |
69 | * @generated |
70 | * @ordered |
71 | */ |
72 | protected String value = VALUE_EDEFAULT; |
73 | |
74 | /** |
75 | * <!-- begin-user-doc --> |
76 | * <!-- end-user-doc --> |
77 | * @generated |
78 | */ |
79 | protected PragmaTypeImpl() { |
80 | super(); |
81 | } |
82 | |
83 | /** |
84 | * <!-- begin-user-doc --> |
85 | * <!-- end-user-doc --> |
86 | * @generated |
87 | */ |
88 | @Override |
89 | protected EClass eStaticClass() { |
90 | return LqnCorePackage.Literals.PRAGMA_TYPE; |
91 | } |
92 | |
93 | /** |
94 | * <!-- begin-user-doc --> |
95 | * <!-- end-user-doc --> |
96 | * @generated |
97 | */ |
98 | public String getParam() { |
99 | return param; |
100 | } |
101 | |
102 | /** |
103 | * <!-- begin-user-doc --> |
104 | * <!-- end-user-doc --> |
105 | * @generated |
106 | */ |
107 | public void setParam(String newParam) { |
108 | String oldParam = param; |
109 | param = newParam; |
110 | if (eNotificationRequired()) |
111 | eNotify(new ENotificationImpl(this, Notification.SET, LqnCorePackage.PRAGMA_TYPE__PARAM, oldParam, param)); |
112 | } |
113 | |
114 | /** |
115 | * <!-- begin-user-doc --> |
116 | * <!-- end-user-doc --> |
117 | * @generated |
118 | */ |
119 | public String getValue() { |
120 | return value; |
121 | } |
122 | |
123 | /** |
124 | * <!-- begin-user-doc --> |
125 | * <!-- end-user-doc --> |
126 | * @generated |
127 | */ |
128 | public void setValue(String newValue) { |
129 | String oldValue = value; |
130 | value = newValue; |
131 | if (eNotificationRequired()) |
132 | eNotify(new ENotificationImpl(this, Notification.SET, LqnCorePackage.PRAGMA_TYPE__VALUE, oldValue, value)); |
133 | } |
134 | |
135 | /** |
136 | * <!-- begin-user-doc --> |
137 | * <!-- end-user-doc --> |
138 | * @generated |
139 | */ |
140 | @Override |
141 | public Object eGet(int featureID, boolean resolve, boolean coreType) { |
142 | switch (featureID) { |
143 | case LqnCorePackage.PRAGMA_TYPE__PARAM: |
144 | return getParam(); |
145 | case LqnCorePackage.PRAGMA_TYPE__VALUE: |
146 | return getValue(); |
147 | } |
148 | return super.eGet(featureID, resolve, coreType); |
149 | } |
150 | |
151 | /** |
152 | * <!-- begin-user-doc --> |
153 | * <!-- end-user-doc --> |
154 | * @generated |
155 | */ |
156 | @Override |
157 | public void eSet(int featureID, Object newValue) { |
158 | switch (featureID) { |
159 | case LqnCorePackage.PRAGMA_TYPE__PARAM: |
160 | setParam((String)newValue); |
161 | return; |
162 | case LqnCorePackage.PRAGMA_TYPE__VALUE: |
163 | setValue((String)newValue); |
164 | return; |
165 | } |
166 | super.eSet(featureID, newValue); |
167 | } |
168 | |
169 | /** |
170 | * <!-- begin-user-doc --> |
171 | * <!-- end-user-doc --> |
172 | * @generated |
173 | */ |
174 | @Override |
175 | public void eUnset(int featureID) { |
176 | switch (featureID) { |
177 | case LqnCorePackage.PRAGMA_TYPE__PARAM: |
178 | setParam(PARAM_EDEFAULT); |
179 | return; |
180 | case LqnCorePackage.PRAGMA_TYPE__VALUE: |
181 | setValue(VALUE_EDEFAULT); |
182 | return; |
183 | } |
184 | super.eUnset(featureID); |
185 | } |
186 | |
187 | /** |
188 | * <!-- begin-user-doc --> |
189 | * <!-- end-user-doc --> |
190 | * @generated |
191 | */ |
192 | @Override |
193 | public boolean eIsSet(int featureID) { |
194 | switch (featureID) { |
195 | case LqnCorePackage.PRAGMA_TYPE__PARAM: |
196 | return PARAM_EDEFAULT == null ? param != null : !PARAM_EDEFAULT.equals(param); |
197 | case LqnCorePackage.PRAGMA_TYPE__VALUE: |
198 | return VALUE_EDEFAULT == null ? value != null : !VALUE_EDEFAULT.equals(value); |
199 | } |
200 | return super.eIsSet(featureID); |
201 | } |
202 | |
203 | /** |
204 | * <!-- begin-user-doc --> |
205 | * <!-- end-user-doc --> |
206 | * @generated |
207 | */ |
208 | @Override |
209 | public String toString() { |
210 | if (eIsProxy()) return super.toString(); |
211 | |
212 | StringBuffer result = new StringBuffer(super.toString()); |
213 | result.append(" (param: "); |
214 | result.append(param); |
215 | result.append(", value: "); |
216 | result.append(value); |
217 | result.append(')'); |
218 | return result.toString(); |
219 | } |
220 | |
221 | } //PragmaTypeImpl |