/** */ package crossingScenario; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Lane'. * * *

* The following features are supported: *

* * * @see crossingScenario.CrossingScenarioPackage#getLane() * @model abstract="true" * @generated */ public interface Lane extends EObject { /** * Returns the value of the 'Reference Coord' attribute. * * * @return the value of the 'Reference Coord' attribute. * @see #setReferenceCoord(double) * @see crossingScenario.CrossingScenarioPackage#getLane_ReferenceCoord() * @model required="true" * @generated */ double getReferenceCoord(); /** * Sets the value of the '{@link crossingScenario.Lane#getReferenceCoord Reference Coord}' attribute. * * * @param value the new value of the 'Reference Coord' attribute. * @see #getReferenceCoord() * @generated */ void setReferenceCoord(double value); /** * Returns the value of the 'Actors' reference list. * The list contents are of type {@link crossingScenario.Actor}. * It is bidirectional and its opposite is '{@link crossingScenario.Actor#getPlacedOn Placed On}'. * * * @return the value of the 'Actors' reference list. * @see crossingScenario.CrossingScenarioPackage#getLane_Actors() * @see crossingScenario.Actor#getPlacedOn * @model opposite="placedOn" * @generated */ EList getActors(); } // Lane