aboutsummaryrefslogtreecommitdiffstats
path: root/Domains/crossingScenario/ecore-gen/crossingScenario
diff options
context:
space:
mode:
Diffstat (limited to 'Domains/crossingScenario/ecore-gen/crossingScenario')
-rw-r--r--Domains/crossingScenario/ecore-gen/crossingScenario/Distance.java58
-rw-r--r--Domains/crossingScenario/ecore-gen/crossingScenario/Size.java58
-rw-r--r--Domains/crossingScenario/ecore-gen/crossingScenario/impl/CrossingScenarioPackageImpl.java12
-rw-r--r--Domains/crossingScenario/ecore-gen/crossingScenario/impl/LaneImpl.java2
-rw-r--r--Domains/crossingScenario/ecore-gen/crossingScenario/impl/SeparationDistanceImpl.java2
5 files changed, 62 insertions, 70 deletions
diff --git a/Domains/crossingScenario/ecore-gen/crossingScenario/Distance.java b/Domains/crossingScenario/ecore-gen/crossingScenario/Distance.java
index 68a0deb6..80731e1f 100644
--- a/Domains/crossingScenario/ecore-gen/crossingScenario/Distance.java
+++ b/Domains/crossingScenario/ecore-gen/crossingScenario/Distance.java
@@ -19,67 +19,63 @@ import org.eclipse.emf.common.util.Enumerator;
19 */ 19 */
20public enum Distance implements Enumerator { 20public enum Distance implements Enumerator {
21 /** 21 /**
22 * The '<em><b>Near</b></em>' literal object. 22 * The '<em><b>DNear</b></em>' literal object.
23 * <!-- begin-user-doc --> 23 * <!-- begin-user-doc -->
24 * <!-- end-user-doc --> 24 * <!-- end-user-doc -->
25 * @see #NEAR_VALUE 25 * @see #DNEAR_VALUE
26 * @generated 26 * @generated
27 * @ordered 27 * @ordered
28 */ 28 */
29 NEAR(0, "Near", "Near"), 29 DNEAR(0, "D_Near", "D_Near"), /**
30 30 * The '<em><b>DMed</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 #DMED_VALUE
36 * @generated 34 * @generated
37 * @ordered 35 * @ordered
38 */ 36 */
39 MEDIUM(1, "Medium", "Medium"), 37 DMED(1, "D_Med", "D_Med"), /**
40 38 * The '<em><b>DFar</b></em>' literal object.
41 /**
42 * The '<em><b>Far</b></em>' literal object.
43 * <!-- begin-user-doc --> 39 * <!-- begin-user-doc -->
44 * <!-- end-user-doc --> 40 * <!-- end-user-doc -->
45 * @see #FAR_VALUE 41 * @see #DFAR_VALUE
46 * @generated 42 * @generated
47 * @ordered 43 * @ordered
48 */ 44 */
49 FAR(2, "Far", "Far"); 45 DFAR(2, "D_Far", "D_Far");
50 46
51 /** 47 /**
52 * The '<em><b>Near</b></em>' literal value. 48 * The '<em><b>DNear</b></em>' literal value.
53 * <!-- begin-user-doc --> 49 * <!-- begin-user-doc -->
54 * <!-- end-user-doc --> 50 * <!-- end-user-doc -->
55 * @see #NEAR 51 * @see #DNEAR
56 * @model name="Near" 52 * @model name="D_Near"
57 * @generated 53 * @generated
58 * @ordered 54 * @ordered
59 */ 55 */
60 public static final int NEAR_VALUE = 0; 56 public static final int DNEAR_VALUE = 0;
61 57
62 /** 58 /**
63 * The '<em><b>Medium</b></em>' literal value. 59 * The '<em><b>DMed</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 #DMED
67 * @model name="Medium" 63 * @model name="D_Med"
68 * @generated 64 * @generated
69 * @ordered 65 * @ordered
70 */ 66 */
71 public static final int MEDIUM_VALUE = 1; 67 public static final int DMED_VALUE = 1;
72 68
73 /** 69 /**
74 * The '<em><b>Far</b></em>' literal value. 70 * The '<em><b>DFar</b></em>' literal value.
75 * <!-- begin-user-doc --> 71 * <!-- begin-user-doc -->
76 * <!-- end-user-doc --> 72 * <!-- end-user-doc -->
77 * @see #FAR 73 * @see #DFAR
78 * @model name="Far" 74 * @model name="D_Far"
79 * @generated 75 * @generated
80 * @ordered 76 * @ordered
81 */ 77 */
82 public static final int FAR_VALUE = 2; 78 public static final int DFAR_VALUE = 2;
83 79
84 /** 80 /**
85 * An array of all the '<em><b>Distance</b></em>' enumerators. 81 * An array of all the '<em><b>Distance</b></em>' enumerators.
@@ -89,9 +85,9 @@ public enum Distance implements Enumerator {
89 */ 85 */
90 private static final Distance[] VALUES_ARRAY = 86 private static final Distance[] VALUES_ARRAY =
91 new Distance[] { 87 new Distance[] {
92 NEAR, 88 DNEAR,
93 MEDIUM, 89 DMED,
94 FAR, 90 DFAR,
95 }; 91 };
96 92
97 /** 93 /**
@@ -148,9 +144,9 @@ public enum Distance implements Enumerator {
148 */ 144 */
149 public static Distance get(int value) { 145 public static Distance get(int value) {
150 switch (value) { 146 switch (value) {
151 case NEAR_VALUE: return NEAR; 147 case DNEAR_VALUE: return DNEAR;
152 case MEDIUM_VALUE: return MEDIUM; 148 case DMED_VALUE: return DMED;
153 case FAR_VALUE: return FAR; 149 case DFAR_VALUE: return DFAR;
154 } 150 }
155 return null; 151 return null;
156 } 152 }
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 }
diff --git a/Domains/crossingScenario/ecore-gen/crossingScenario/impl/CrossingScenarioPackageImpl.java b/Domains/crossingScenario/ecore-gen/crossingScenario/impl/CrossingScenarioPackageImpl.java
index 6819135b..3d2ccc0d 100644
--- a/Domains/crossingScenario/ecore-gen/crossingScenario/impl/CrossingScenarioPackageImpl.java
+++ b/Domains/crossingScenario/ecore-gen/crossingScenario/impl/CrossingScenarioPackageImpl.java
@@ -754,14 +754,14 @@ public class CrossingScenarioPackageImpl extends EPackageImpl implements Crossin
754 addEEnumLiteral(orientationEEnum, Orientation.HORIZONTAL); 754 addEEnumLiteral(orientationEEnum, Orientation.HORIZONTAL);
755 755
756 initEEnum(sizeEEnum, Size.class, "Size"); 756 initEEnum(sizeEEnum, Size.class, "Size");
757 addEEnumLiteral(sizeEEnum, Size.SMALL); 757 addEEnumLiteral(sizeEEnum, Size.SSMALL);
758 addEEnumLiteral(sizeEEnum, Size.MEDIUM); 758 addEEnumLiteral(sizeEEnum, Size.SMED);
759 addEEnumLiteral(sizeEEnum, Size.LARGE); 759 addEEnumLiteral(sizeEEnum, Size.SLARGE);
760 760
761 initEEnum(distanceEEnum, Distance.class, "Distance"); 761 initEEnum(distanceEEnum, Distance.class, "Distance");
762 addEEnumLiteral(distanceEEnum, Distance.NEAR); 762 addEEnumLiteral(distanceEEnum, Distance.DNEAR);
763 addEEnumLiteral(distanceEEnum, Distance.MEDIUM); 763 addEEnumLiteral(distanceEEnum, Distance.DMED);
764 addEEnumLiteral(distanceEEnum, Distance.FAR); 764 addEEnumLiteral(distanceEEnum, Distance.DFAR);
765 765
766 // Create resource 766 // Create resource
767 createResource(eNS_URI); 767 createResource(eNS_URI);
diff --git a/Domains/crossingScenario/ecore-gen/crossingScenario/impl/LaneImpl.java b/Domains/crossingScenario/ecore-gen/crossingScenario/impl/LaneImpl.java
index a97c02fc..110f26c8 100644
--- a/Domains/crossingScenario/ecore-gen/crossingScenario/impl/LaneImpl.java
+++ b/Domains/crossingScenario/ecore-gen/crossingScenario/impl/LaneImpl.java
@@ -71,7 +71,7 @@ public class LaneImpl extends MinimalEObjectImpl.Container implements Lane {
71 * @generated 71 * @generated
72 * @ordered 72 * @ordered
73 */ 73 */
74 protected static final Size WIDTH_EDEFAULT = Size.SMALL; 74 protected static final Size WIDTH_EDEFAULT = Size.SSMALL;
75 75
76 /** 76 /**
77 * The cached value of the '{@link #getWidth() <em>Width</em>}' attribute. 77 * The cached value of the '{@link #getWidth() <em>Width</em>}' attribute.
diff --git a/Domains/crossingScenario/ecore-gen/crossingScenario/impl/SeparationDistanceImpl.java b/Domains/crossingScenario/ecore-gen/crossingScenario/impl/SeparationDistanceImpl.java
index bad91f1c..298a2121 100644
--- a/Domains/crossingScenario/ecore-gen/crossingScenario/impl/SeparationDistanceImpl.java
+++ b/Domains/crossingScenario/ecore-gen/crossingScenario/impl/SeparationDistanceImpl.java
@@ -34,7 +34,7 @@ public class SeparationDistanceImpl extends SpatialRelationImpl implements Separ
34 * @generated 34 * @generated
35 * @ordered 35 * @ordered
36 */ 36 */
37 protected static final Distance DISTANCE_EDEFAULT = Distance.NEAR; 37 protected static final Distance DISTANCE_EDEFAULT = Distance.DNEAR;
38 38
39 /** 39 /**
40 * The cached value of the '{@link #getDistance() <em>Distance</em>}' attribute. 40 * The cached value of the '{@link #getDistance() <em>Distance</em>}' attribute.