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.PriorityDependentTimeSliceConfiguration; |
17 | |
18 | /** |
19 | * <!-- begin-user-doc --> |
20 | * An implementation of the model object '<em><b>Priority Dependent 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.PriorityDependentTimeSliceConfigurationImpl#getMinTimeslice <em>Min Timeslice</em>}</li> |
26 | * <li>{@link scheduler.configuration.impl.PriorityDependentTimeSliceConfigurationImpl#getMinTimeToBeScheduled <em>Min Time To Be Scheduled</em>}</li> |
27 | * </ul> |
28 | * </p> |
29 | * |
30 | * @generated |
31 | */ |
32 | public class PriorityDependentTimeSliceConfigurationImpl extends TimeSliceConfigurationImpl implements PriorityDependentTimeSliceConfiguration { |
33 | /** |
34 | * The default value of the '{@link #getMinTimeslice() <em>Min Timeslice</em>}' attribute. |
35 | * <!-- begin-user-doc --> |
36 | * <!-- end-user-doc --> |
37 | * @see #getMinTimeslice() |
38 | * @generated |
39 | * @ordered |
40 | */ |
41 | protected static final double MIN_TIMESLICE_EDEFAULT = 0.0; |
42 | |
43 | /** |
44 | * The cached value of the '{@link #getMinTimeslice() <em>Min Timeslice</em>}' attribute. |
45 | * <!-- begin-user-doc --> |
46 | * <!-- end-user-doc --> |
47 | * @see #getMinTimeslice() |
48 | * @generated |
49 | * @ordered |
50 | */ |
51 | protected double minTimeslice = MIN_TIMESLICE_EDEFAULT; |
52 | |
53 | /** |
54 | * The default value of the '{@link #getMinTimeToBeScheduled() <em>Min Time To Be Scheduled</em>}' attribute. |
55 | * <!-- begin-user-doc --> |
56 | * <!-- end-user-doc --> |
57 | * @see #getMinTimeToBeScheduled() |
58 | * @generated |
59 | * @ordered |
60 | */ |
61 | protected static final double MIN_TIME_TO_BE_SCHEDULED_EDEFAULT = 0.0; |
62 | |
63 | /** |
64 | * The cached value of the '{@link #getMinTimeToBeScheduled() <em>Min Time To Be Scheduled</em>}' attribute. |
65 | * <!-- begin-user-doc --> |
66 | * <!-- end-user-doc --> |
67 | * @see #getMinTimeToBeScheduled() |
68 | * @generated |
69 | * @ordered |
70 | */ |
71 | protected double minTimeToBeScheduled = MIN_TIME_TO_BE_SCHEDULED_EDEFAULT; |
72 | |
73 | /** |
74 | * <!-- begin-user-doc --> |
75 | * <!-- end-user-doc --> |
76 | * @generated |
77 | */ |
78 | protected PriorityDependentTimeSliceConfigurationImpl() { |
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.PRIORITY_DEPENDENT_TIME_SLICE_CONFIGURATION; |
90 | } |
91 | |
92 | /** |
93 | * <!-- begin-user-doc --> |
94 | * <!-- end-user-doc --> |
95 | * @generated |
96 | */ |
97 | public double getMinTimeslice() { |
98 | return minTimeslice; |
99 | } |
100 | |
101 | /** |
102 | * <!-- begin-user-doc --> |
103 | * <!-- end-user-doc --> |
104 | * @generated |
105 | */ |
106 | public void setMinTimeslice(double newMinTimeslice) { |
107 | double oldMinTimeslice = minTimeslice; |
108 | minTimeslice = newMinTimeslice; |
109 | if (eNotificationRequired()) |
110 | eNotify(new ENotificationImpl(this, Notification.SET, ConfigurationPackage.PRIORITY_DEPENDENT_TIME_SLICE_CONFIGURATION__MIN_TIMESLICE, oldMinTimeslice, minTimeslice)); |
111 | } |
112 | |
113 | /** |
114 | * <!-- begin-user-doc --> |
115 | * <!-- end-user-doc --> |
116 | * @generated |
117 | */ |
118 | public double getMinTimeToBeScheduled() { |
119 | return minTimeToBeScheduled; |
120 | } |
121 | |
122 | /** |
123 | * <!-- begin-user-doc --> |
124 | * <!-- end-user-doc --> |
125 | * @generated |
126 | */ |
127 | public void setMinTimeToBeScheduled(double newMinTimeToBeScheduled) { |
128 | double oldMinTimeToBeScheduled = minTimeToBeScheduled; |
129 | minTimeToBeScheduled = newMinTimeToBeScheduled; |
130 | if (eNotificationRequired()) |
131 | eNotify(new ENotificationImpl(this, Notification.SET, ConfigurationPackage.PRIORITY_DEPENDENT_TIME_SLICE_CONFIGURATION__MIN_TIME_TO_BE_SCHEDULED, oldMinTimeToBeScheduled, minTimeToBeScheduled)); |
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.PRIORITY_DEPENDENT_TIME_SLICE_CONFIGURATION__MIN_TIMESLICE: |
143 | return getMinTimeslice(); |
144 | case ConfigurationPackage.PRIORITY_DEPENDENT_TIME_SLICE_CONFIGURATION__MIN_TIME_TO_BE_SCHEDULED: |
145 | return getMinTimeToBeScheduled(); |
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.PRIORITY_DEPENDENT_TIME_SLICE_CONFIGURATION__MIN_TIMESLICE: |
159 | setMinTimeslice((Double)newValue); |
160 | return; |
161 | case ConfigurationPackage.PRIORITY_DEPENDENT_TIME_SLICE_CONFIGURATION__MIN_TIME_TO_BE_SCHEDULED: |
162 | setMinTimeToBeScheduled((Double)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.PRIORITY_DEPENDENT_TIME_SLICE_CONFIGURATION__MIN_TIMESLICE: |
177 | setMinTimeslice(MIN_TIMESLICE_EDEFAULT); |
178 | return; |
179 | case ConfigurationPackage.PRIORITY_DEPENDENT_TIME_SLICE_CONFIGURATION__MIN_TIME_TO_BE_SCHEDULED: |
180 | setMinTimeToBeScheduled(MIN_TIME_TO_BE_SCHEDULED_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.PRIORITY_DEPENDENT_TIME_SLICE_CONFIGURATION__MIN_TIMESLICE: |
195 | return minTimeslice != MIN_TIMESLICE_EDEFAULT; |
196 | case ConfigurationPackage.PRIORITY_DEPENDENT_TIME_SLICE_CONFIGURATION__MIN_TIME_TO_BE_SCHEDULED: |
197 | return minTimeToBeScheduled != MIN_TIME_TO_BE_SCHEDULED_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(" (minTimeslice: "); |
213 | result.append(minTimeslice); |
214 | result.append(", minTimeToBeScheduled: "); |
215 | result.append(minTimeToBeScheduled); |
216 | result.append(')'); |
217 | return result.toString(); |
218 | } |
219 | |
220 | } //PriorityDependentTimeSliceConfigurationImpl |