19
19
* The following features are implemented:
20
20
* </p>
21
21
* <ul>
22
- * <li>{@link org.sheepy.vsand.model.impl.VSandConstantsImpl#isFirstPass <em>First Pass </em>}</li>
22
+ * <li>{@link org.sheepy.vsand.model.impl.VSandConstantsImpl#isForceClear <em>Force Clear </em>}</li>
23
23
* <li>{@link org.sheepy.vsand.model.impl.VSandConstantsImpl#isShowSleepZones <em>Show Sleep Zones</em>}</li>
24
24
* </ul>
25
25
*
28
28
public class VSandConstantsImpl extends AbstractConstantsImpl implements VSandConstants
29
29
{
30
30
/**
31
- * The default value of the '{@link #isFirstPass () <em>First Pass </em>}' attribute.
31
+ * The default value of the '{@link #isForceClear () <em>Force Clear </em>}' attribute.
32
32
* <!-- begin-user-doc -->
33
33
* <!-- end-user-doc -->
34
- * @see #isFirstPass ()
34
+ * @see #isForceClear ()
35
35
* @generated
36
36
* @ordered
37
37
*/
38
- protected static final boolean FIRST_PASS_EDEFAULT = true ;
38
+ protected static final boolean FORCE_CLEAR_EDEFAULT = false ;
39
39
40
40
/**
41
- * The cached value of the '{@link #isFirstPass () <em>First Pass </em>}' attribute.
41
+ * The cached value of the '{@link #isForceClear () <em>Force Clear </em>}' attribute.
42
42
* <!-- begin-user-doc -->
43
43
* <!-- end-user-doc -->
44
- * @see #isFirstPass ()
44
+ * @see #isForceClear ()
45
45
* @generated
46
46
* @ordered
47
47
*/
48
- protected boolean firstPass = FIRST_PASS_EDEFAULT ;
48
+ protected boolean forceClear = FORCE_CLEAR_EDEFAULT ;
49
49
50
50
/**
51
51
* The default value of the '{@link #isShowSleepZones() <em>Show Sleep Zones</em>}' attribute.
@@ -94,9 +94,9 @@ protected EClass eStaticClass()
94
94
* @generated
95
95
*/
96
96
@ Override
97
- public boolean isFirstPass ()
97
+ public boolean isForceClear ()
98
98
{
99
- return firstPass ;
99
+ return forceClear ;
100
100
}
101
101
102
102
/**
@@ -105,12 +105,12 @@ public boolean isFirstPass()
105
105
* @generated
106
106
*/
107
107
@ Override
108
- public void setFirstPass (boolean newFirstPass )
108
+ public void setForceClear (boolean newForceClear )
109
109
{
110
- boolean oldFirstPass = firstPass ;
111
- firstPass = newFirstPass ;
110
+ boolean oldForceClear = forceClear ;
111
+ forceClear = newForceClear ;
112
112
if (eNotificationRequired ())
113
- eNotify (new ENotificationImpl (this , Notification .SET , VSandPackage .VSAND_CONSTANTS__FIRST_PASS , oldFirstPass , firstPass ));
113
+ eNotify (new ENotificationImpl (this , Notification .SET , VSandPackage .VSAND_CONSTANTS__FORCE_CLEAR , oldForceClear , forceClear ));
114
114
}
115
115
116
116
/**
@@ -148,8 +148,8 @@ public Object eGet(int featureID, boolean resolve, boolean coreType)
148
148
{
149
149
switch (featureID )
150
150
{
151
- case VSandPackage .VSAND_CONSTANTS__FIRST_PASS :
152
- return isFirstPass ();
151
+ case VSandPackage .VSAND_CONSTANTS__FORCE_CLEAR :
152
+ return isForceClear ();
153
153
case VSandPackage .VSAND_CONSTANTS__SHOW_SLEEP_ZONES :
154
154
return isShowSleepZones ();
155
155
}
@@ -166,8 +166,8 @@ public void eSet(int featureID, Object newValue)
166
166
{
167
167
switch (featureID )
168
168
{
169
- case VSandPackage .VSAND_CONSTANTS__FIRST_PASS :
170
- setFirstPass ((Boolean )newValue );
169
+ case VSandPackage .VSAND_CONSTANTS__FORCE_CLEAR :
170
+ setForceClear ((Boolean )newValue );
171
171
return ;
172
172
case VSandPackage .VSAND_CONSTANTS__SHOW_SLEEP_ZONES :
173
173
setShowSleepZones ((Boolean )newValue );
@@ -186,8 +186,8 @@ public void eUnset(int featureID)
186
186
{
187
187
switch (featureID )
188
188
{
189
- case VSandPackage .VSAND_CONSTANTS__FIRST_PASS :
190
- setFirstPass ( FIRST_PASS_EDEFAULT );
189
+ case VSandPackage .VSAND_CONSTANTS__FORCE_CLEAR :
190
+ setForceClear ( FORCE_CLEAR_EDEFAULT );
191
191
return ;
192
192
case VSandPackage .VSAND_CONSTANTS__SHOW_SLEEP_ZONES :
193
193
setShowSleepZones (SHOW_SLEEP_ZONES_EDEFAULT );
@@ -206,8 +206,8 @@ public boolean eIsSet(int featureID)
206
206
{
207
207
switch (featureID )
208
208
{
209
- case VSandPackage .VSAND_CONSTANTS__FIRST_PASS :
210
- return firstPass != FIRST_PASS_EDEFAULT ;
209
+ case VSandPackage .VSAND_CONSTANTS__FORCE_CLEAR :
210
+ return forceClear != FORCE_CLEAR_EDEFAULT ;
211
211
case VSandPackage .VSAND_CONSTANTS__SHOW_SLEEP_ZONES :
212
212
return showSleepZones != SHOW_SLEEP_ZONES_EDEFAULT ;
213
213
}
@@ -225,8 +225,8 @@ public String toString()
225
225
if (eIsProxy ()) return super .toString ();
226
226
227
227
StringBuilder result = new StringBuilder (super .toString ());
228
- result .append (" (firstPass : " );
229
- result .append (firstPass );
228
+ result .append (" (forceClear : " );
229
+ result .append (forceClear );
230
230
result .append (", showSleepZones: " );
231
231
result .append (showSleepZones );
232
232
result .append (')' );
0 commit comments