1 | /** |
2 | * <copyright> |
3 | * </copyright> |
4 | * |
5 | * $Id$ |
6 | */ |
7 | package de.uka.ipd.sdq.pcm.designdecision.impl; |
8 | |
9 | import de.uka.ipd.sdq.pcm.designdecision.ContinuousRangeDegree; |
10 | import de.uka.ipd.sdq.pcm.designdecision.designdecisionPackage; |
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 | |
18 | /** |
19 | * <!-- begin-user-doc --> |
20 | * An implementation of the model object '<em><b>Continuous Range Degree</b></em>'. |
21 | * <!-- end-user-doc --> |
22 | * <p> |
23 | * The following features are implemented: |
24 | * <ul> |
25 | * <li>{@link de.uka.ipd.sdq.pcm.designdecision.impl.ContinuousRangeDegreeImpl#getTo <em>To</em>}</li> |
26 | * <li>{@link de.uka.ipd.sdq.pcm.designdecision.impl.ContinuousRangeDegreeImpl#getFrom <em>From</em>}</li> |
27 | * </ul> |
28 | * </p> |
29 | * |
30 | * @generated |
31 | */ |
32 | public class ContinuousRangeDegreeImpl extends RangeDegreeImpl implements ContinuousRangeDegree { |
33 | /** |
34 | * The default value of the '{@link #getTo() <em>To</em>}' attribute. |
35 | * <!-- begin-user-doc --> |
36 | * <!-- end-user-doc --> |
37 | * @see #getTo() |
38 | * @generated |
39 | * @ordered |
40 | */ |
41 | protected static final double TO_EDEFAULT = 0.0; |
42 | |
43 | /** |
44 | * The cached value of the '{@link #getTo() <em>To</em>}' attribute. |
45 | * <!-- begin-user-doc --> |
46 | * <!-- end-user-doc --> |
47 | * @see #getTo() |
48 | * @generated |
49 | * @ordered |
50 | */ |
51 | protected double to = TO_EDEFAULT; |
52 | |
53 | /** |
54 | * The default value of the '{@link #getFrom() <em>From</em>}' attribute. |
55 | * <!-- begin-user-doc --> |
56 | * <!-- end-user-doc --> |
57 | * @see #getFrom() |
58 | * @generated |
59 | * @ordered |
60 | */ |
61 | protected static final double FROM_EDEFAULT = 0.0; |
62 | |
63 | /** |
64 | * The cached value of the '{@link #getFrom() <em>From</em>}' attribute. |
65 | * <!-- begin-user-doc --> |
66 | * <!-- end-user-doc --> |
67 | * @see #getFrom() |
68 | * @generated |
69 | * @ordered |
70 | */ |
71 | protected double from = FROM_EDEFAULT; |
72 | |
73 | /** |
74 | * <!-- begin-user-doc --> |
75 | * <!-- end-user-doc --> |
76 | * @generated |
77 | */ |
78 | protected ContinuousRangeDegreeImpl() { |
79 | super(); |
80 | } |
81 | |
82 | /** |
83 | * <!-- begin-user-doc --> |
84 | * <!-- end-user-doc --> |
85 | * @generated |
86 | */ |
87 | @Override |
88 | protected EClass eStaticClass() { |
89 | return designdecisionPackage.Literals.CONTINUOUS_RANGE_DEGREE; |
90 | } |
91 | |
92 | /** |
93 | * <!-- begin-user-doc --> |
94 | * <!-- end-user-doc --> |
95 | * @generated |
96 | */ |
97 | public double getTo() { |
98 | return to; |
99 | } |
100 | |
101 | /** |
102 | * <!-- begin-user-doc --> |
103 | * <!-- end-user-doc --> |
104 | * @generated |
105 | */ |
106 | public void setTo(double newTo) { |
107 | double oldTo = to; |
108 | to = newTo; |
109 | if (eNotificationRequired()) |
110 | eNotify(new ENotificationImpl(this, Notification.SET, designdecisionPackage.CONTINUOUS_RANGE_DEGREE__TO, oldTo, to)); |
111 | } |
112 | |
113 | /** |
114 | * <!-- begin-user-doc --> |
115 | * <!-- end-user-doc --> |
116 | * @generated |
117 | */ |
118 | public double getFrom() { |
119 | return from; |
120 | } |
121 | |
122 | /** |
123 | * <!-- begin-user-doc --> |
124 | * <!-- end-user-doc --> |
125 | * @generated |
126 | */ |
127 | public void setFrom(double newFrom) { |
128 | double oldFrom = from; |
129 | from = newFrom; |
130 | if (eNotificationRequired()) |
131 | eNotify(new ENotificationImpl(this, Notification.SET, designdecisionPackage.CONTINUOUS_RANGE_DEGREE__FROM, oldFrom, from)); |
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 designdecisionPackage.CONTINUOUS_RANGE_DEGREE__TO: |
143 | return getTo(); |
144 | case designdecisionPackage.CONTINUOUS_RANGE_DEGREE__FROM: |
145 | return getFrom(); |
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 designdecisionPackage.CONTINUOUS_RANGE_DEGREE__TO: |
159 | setTo((Double)newValue); |
160 | return; |
161 | case designdecisionPackage.CONTINUOUS_RANGE_DEGREE__FROM: |
162 | setFrom((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 designdecisionPackage.CONTINUOUS_RANGE_DEGREE__TO: |
177 | setTo(TO_EDEFAULT); |
178 | return; |
179 | case designdecisionPackage.CONTINUOUS_RANGE_DEGREE__FROM: |
180 | setFrom(FROM_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 designdecisionPackage.CONTINUOUS_RANGE_DEGREE__TO: |
195 | return to != TO_EDEFAULT; |
196 | case designdecisionPackage.CONTINUOUS_RANGE_DEGREE__FROM: |
197 | return from != FROM_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(" (to: "); |
213 | result.append(to); |
214 | result.append(", from: "); |
215 | result.append(from); |
216 | result.append(')'); |
217 | return result.toString(); |
218 | } |
219 | |
220 | } //ContinuousRangeDegreeImpl |