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