aboutsummaryrefslogtreecommitdiffstats
path: root/Domains/crossingScenario/ecore-gen/crossingScenario/Size.java
diff options
context:
space:
mode:
Diffstat (limited to 'Domains/crossingScenario/ecore-gen/crossingScenario/Size.java')
-rw-r--r--Domains/crossingScenario/ecore-gen/crossingScenario/Size.java58
1 files changed, 27 insertions, 31 deletions
diff --git a/Domains/crossingScenario/ecore-gen/crossingScenario/Size.java b/Domains/crossingScenario/ecore-gen/crossingScenario/Size.java
index f4915b2e..1465201c 100644
--- a/Domains/crossingScenario/ecore-gen/crossingScenario/Size.java
+++ b/Domains/crossingScenario/ecore-gen/crossingScenario/Size.java
@@ -19,67 +19,63 @@ import org.eclipse.emf.common.util.Enumerator;
19 */ 19 */
20public enum Size implements Enumerator { 20public enum Size implements Enumerator {
21 /** 21 /**
22 * The '<em><b>Small</b></em>' literal object. 22 * The '<em><b>SSmall</b></em>' literal object.
23 * <!-- begin-user-doc --> 23 * <!-- begin-user-doc -->
24 * <!-- end-user-doc --> 24 * <!-- end-user-doc -->
25 * @see #SMALL_VALUE 25 * @see #SSMALL_VALUE
26 * @generated 26 * @generated
27 * @ordered 27 * @ordered
28 */ 28 */
29 SMALL(0, "Small", "Small"), 29 SSMALL(0, "S_Small", "S_Small"), /**
30 30 * The '<em><b>SMed</b></em>' literal object.
31 /**
32 * The '<em><b>Medium</b></em>' literal object.
33 * <!-- begin-user-doc --> 31 * <!-- begin-user-doc -->
34 * <!-- end-user-doc --> 32 * <!-- end-user-doc -->
35 * @see #MEDIUM_VALUE 33 * @see #SMED_VALUE
36 * @generated 34 * @generated
37 * @ordered 35 * @ordered
38 */ 36 */
39 MEDIUM(1, "Medium", "Medium"), 37 SMED(1, "S_Med", "S_Med"), /**
40 38 * The '<em><b>SLarge</b></em>' literal object.
41 /**
42 * The '<em><b>Large</b></em>' literal object.
43 * <!-- begin-user-doc --> 39 * <!-- begin-user-doc -->
44 * <!-- end-user-doc --> 40 * <!-- end-user-doc -->
45 * @see #LARGE_VALUE 41 * @see #SLARGE_VALUE
46 * @generated 42 * @generated
47 * @ordered 43 * @ordered
48 */ 44 */
49 LARGE(2, "Large", "Large"); 45 SLARGE(2, "S_Large", "S_Large");
50 46
51 /** 47 /**
52 * The '<em><b>Small</b></em>' literal value. 48 * The '<em><b>SSmall</b></em>' literal value.
53 * <!-- begin-user-doc --> 49 * <!-- begin-user-doc -->
54 * <!-- end-user-doc --> 50 * <!-- end-user-doc -->
55 * @see #SMALL 51 * @see #SSMALL
56 * @model name="Small" 52 * @model name="S_Small"
57 * @generated 53 * @generated
58 * @ordered 54 * @ordered
59 */ 55 */
60 public static final int SMALL_VALUE = 0; 56 public static final int SSMALL_VALUE = 0;
61 57
62 /** 58 /**
63 * The '<em><b>Medium</b></em>' literal value. 59 * The '<em><b>SMed</b></em>' literal value.
64 * <!-- begin-user-doc --> 60 * <!-- begin-user-doc -->
65 * <!-- end-user-doc --> 61 * <!-- end-user-doc -->
66 * @see #MEDIUM 62 * @see #SMED
67 * @model name="Medium" 63 * @model name="S_Med"
68 * @generated 64 * @generated
69 * @ordered 65 * @ordered
70 */ 66 */
71 public static final int MEDIUM_VALUE = 1; 67 public static final int SMED_VALUE = 1;
72 68
73 /** 69 /**
74 * The '<em><b>Large</b></em>' literal value. 70 * The '<em><b>SLarge</b></em>' literal value.
75 * <!-- begin-user-doc --> 71 * <!-- begin-user-doc -->
76 * <!-- end-user-doc --> 72 * <!-- end-user-doc -->
77 * @see #LARGE 73 * @see #SLARGE
78 * @model name="Large" 74 * @model name="S_Large"
79 * @generated 75 * @generated
80 * @ordered 76 * @ordered
81 */ 77 */
82 public static final int LARGE_VALUE = 2; 78 public static final int SLARGE_VALUE = 2;
83 79
84 /** 80 /**
85 * An array of all the '<em><b>Size</b></em>' enumerators. 81 * An array of all the '<em><b>Size</b></em>' enumerators.
@@ -89,9 +85,9 @@ public enum Size implements Enumerator {
89 */ 85 */
90 private static final Size[] VALUES_ARRAY = 86 private static final Size[] VALUES_ARRAY =
91 new Size[] { 87 new Size[] {
92 SMALL, 88 SSMALL,
93 MEDIUM, 89 SMED,
94 LARGE, 90 SLARGE,
95 }; 91 };
96 92
97 /** 93 /**
@@ -148,9 +144,9 @@ public enum Size implements Enumerator {
148 */ 144 */
149 public static Size get(int value) { 145 public static Size get(int value) {
150 switch (value) { 146 switch (value) {
151 case SMALL_VALUE: return SMALL; 147 case SSMALL_VALUE: return SSMALL;
152 case MEDIUM_VALUE: return MEDIUM; 148 case SMED_VALUE: return SMED;
153 case LARGE_VALUE: return LARGE; 149 case SLARGE_VALUE: return SLARGE;
154 } 150 }
155 return null; 151 return null;
156 } 152 }