/** */ 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 'Width' attribute. * The literals are from the enumeration {@link crossingScenario.Size}. * * * @return the value of the 'Width' attribute. * @see crossingScenario.Size * @see #setWidth(Size) * @see crossingScenario.CrossingScenarioPackage#getLane_Width() * @model required="true" * @generated */ Size getWidth(); /** * Sets the value of the '{@link crossingScenario.Lane#getWidth Width}' attribute. * * * @param value the new value of the 'Width' attribute. * @see crossingScenario.Size * @see #getWidth() * @generated */ void setWidth(Size value); /** * 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 'Prev Lane' reference. * * * @return the value of the 'Prev Lane' reference. * @see #setPrevLane(Lane) * @see crossingScenario.CrossingScenarioPackage#getLane_PrevLane() * @model * @generated */ Lane getPrevLane(); /** * Sets the value of the '{@link crossingScenario.Lane#getPrevLane Prev Lane}' reference. * * * @param value the new value of the 'Prev Lane' reference. * @see #getPrevLane() * @generated */ void setPrevLane(Lane 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(); /** * Returns the value of the 'Num Width' attribute. * The default value is "0.0". * * * @return the value of the 'Num Width' attribute. * @see #setNumWidth(double) * @see crossingScenario.CrossingScenarioPackage#getLane_NumWidth() * @model default="0.0" required="true" * @generated */ double getNumWidth(); /** * Sets the value of the '{@link crossingScenario.Lane#getNumWidth Num Width}' attribute. * * * @param value the new value of the 'Num Width' attribute. * @see #getNumWidth() * @generated */ void setNumWidth(double value); } // Lane