aboutsummaryrefslogtreecommitdiffstats
path: root/Domains/crossingScenario/ecore-gen/crossingScenario/Lane.java
blob: fc746ed6765fb09acee3025f809e7bb1f880afee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/**
 */
package crossingScenario;

import org.eclipse.emf.common.util.EList;

import org.eclipse.emf.ecore.EObject;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Lane</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link crossingScenario.Lane#getReferenceCoord <em>Reference Coord</em>}</li>
 *   <li>{@link crossingScenario.Lane#getActors <em>Actors</em>}</li>
 * </ul>
 *
 * @see crossingScenario.CrossingScenarioPackage#getLane()
 * @model abstract="true"
 * @generated
 */
public interface Lane extends EObject {
	/**
	 * Returns the value of the '<em><b>Reference Coord</b></em>' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Reference Coord</em>' attribute.
	 * @see #setReferenceCoord(double)
	 * @see crossingScenario.CrossingScenarioPackage#getLane_ReferenceCoord()
	 * @model required="true"
	 * @generated
	 */
	double getReferenceCoord();

	/**
	 * Sets the value of the '{@link crossingScenario.Lane#getReferenceCoord <em>Reference Coord</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Reference Coord</em>' attribute.
	 * @see #getReferenceCoord()
	 * @generated
	 */
	void setReferenceCoord(double value);

	/**
	 * Returns the value of the '<em><b>Actors</b></em>' reference list.
	 * The list contents are of type {@link crossingScenario.Actor}.
	 * It is bidirectional and its opposite is '{@link crossingScenario.Actor#getPlacedOn <em>Placed On</em>}'.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Actors</em>' reference list.
	 * @see crossingScenario.CrossingScenarioPackage#getLane_Actors()
	 * @see crossingScenario.Actor#getPlacedOn
	 * @model opposite="placedOn"
	 * @generated
	 */
	EList<Actor> getActors();

} // Lane