aboutsummaryrefslogtreecommitdiffstats
path: root/Domains/simpleScenario/ecore-gen/simpleScenario/Lane.java
diff options
context:
space:
mode:
authorLibravatar Aren Babikian <aren.babikian@mail.mcgill.ca>2021-01-14 09:20:51 -0500
committerLibravatar Aren Babikian <aren.babikian@mail.mcgill.ca>2021-01-14 09:20:51 -0500
commit0868e0abe8008dd3f5b237581386d44ac38c1125 (patch)
tree29ffa643d071147774daa502bf36b18713f658f7 /Domains/simpleScenario/ecore-gen/simpleScenario/Lane.java
parentAdd some documents to debug MG issue (diff)
downloadVIATRA-Generator-0868e0abe8008dd3f5b237581386d44ac38c1125.tar.gz
VIATRA-Generator-0868e0abe8008dd3f5b237581386d44ac38c1125.tar.zst
VIATRA-Generator-0868e0abe8008dd3f5b237581386d44ac38c1125.zip
Adjust simpleScenario MM and add constraints
Diffstat (limited to 'Domains/simpleScenario/ecore-gen/simpleScenario/Lane.java')
-rw-r--r--Domains/simpleScenario/ecore-gen/simpleScenario/Lane.java26
1 files changed, 18 insertions, 8 deletions
diff --git a/Domains/simpleScenario/ecore-gen/simpleScenario/Lane.java b/Domains/simpleScenario/ecore-gen/simpleScenario/Lane.java
index 9532cd64..376117d0 100644
--- a/Domains/simpleScenario/ecore-gen/simpleScenario/Lane.java
+++ b/Domains/simpleScenario/ecore-gen/simpleScenario/Lane.java
@@ -18,7 +18,7 @@ import org.eclipse.emf.ecore.EObject;
18 * <li>{@link simpleScenario.Lane#getOrientation <em>Orientation</em>}</li> 18 * <li>{@link simpleScenario.Lane#getOrientation <em>Orientation</em>}</li>
19 * <li>{@link simpleScenario.Lane#getWidth <em>Width</em>}</li> 19 * <li>{@link simpleScenario.Lane#getWidth <em>Width</em>}</li>
20 * <li>{@link simpleScenario.Lane#getReferenceCoord <em>Reference Coord</em>}</li> 20 * <li>{@link simpleScenario.Lane#getReferenceCoord <em>Reference Coord</em>}</li>
21 * <li>{@link simpleScenario.Lane#getAdjacent <em>Adjacent</em>}</li> 21 * <li>{@link simpleScenario.Lane#getPrevLane <em>Prev Lane</em>}</li>
22 * <li>{@link simpleScenario.Lane#getActors <em>Actors</em>}</li> 22 * <li>{@link simpleScenario.Lane#getActors <em>Actors</em>}</li>
23 * <li>{@link simpleScenario.Lane#getNumWidth <em>Num Width</em>}</li> 23 * <li>{@link simpleScenario.Lane#getNumWidth <em>Num Width</em>}</li>
24 * </ul> 24 * </ul>
@@ -101,16 +101,26 @@ public interface Lane extends EObject {
101 void setReferenceCoord(double value); 101 void setReferenceCoord(double value);
102 102
103 /** 103 /**
104 * Returns the value of the '<em><b>Adjacent</b></em>' reference list. 104 * Returns the value of the '<em><b>Prev Lane</b></em>' reference.
105 * The list contents are of type {@link simpleScenario.Lane}.
106 * <!-- begin-user-doc --> 105 * <!-- begin-user-doc -->
107 * <!-- end-user-doc --> 106 * <!-- end-user-doc -->
108 * @return the value of the '<em>Adjacent</em>' reference list. 107 * @return the value of the '<em>Prev Lane</em>' reference.
109 * @see simpleScenario.SimpleScenarioPackage#getLane_Adjacent() 108 * @see #setPrevLane(Lane)
110 * @model upper="2" 109 * @see simpleScenario.SimpleScenarioPackage#getLane_PrevLane()
110 * @model
111 * @generated 111 * @generated
112 */ 112 */
113 EList<Lane> getAdjacent(); 113 Lane getPrevLane();
114
115 /**
116 * Sets the value of the '{@link simpleScenario.Lane#getPrevLane <em>Prev Lane</em>}' reference.
117 * <!-- begin-user-doc -->
118 * <!-- end-user-doc -->
119 * @param value the new value of the '<em>Prev Lane</em>' reference.
120 * @see #getPrevLane()
121 * @generated
122 */
123 void setPrevLane(Lane value);
114 124
115 /** 125 /**
116 * Returns the value of the '<em><b>Actors</b></em>' reference list. 126 * Returns the value of the '<em><b>Actors</b></em>' reference list.
@@ -134,7 +144,7 @@ public interface Lane extends EObject {
134 * @return the value of the '<em>Num Width</em>' attribute. 144 * @return the value of the '<em>Num Width</em>' attribute.
135 * @see #setNumWidth(double) 145 * @see #setNumWidth(double)
136 * @see simpleScenario.SimpleScenarioPackage#getLane_NumWidth() 146 * @see simpleScenario.SimpleScenarioPackage#getLane_NumWidth()
137 * @model default="0.0" required="true" derived="true" 147 * @model default="0.0" required="true"
138 * @generated 148 * @generated
139 */ 149 */
140 double getNumWidth(); 150 double getNumWidth();