/** */ package simpleScenario; 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 simpleScenario.SimpleScenarioPackage#getLane() * @model * @generated */ public interface Lane extends EObject { /** * Returns the value of the 'Orientation' attribute. * The literals are from the enumeration {@link simpleScenario.Orientation}. * * * @return the value of the 'Orientation' attribute. * @see simpleScenario.Orientation * @see #setOrientation(Orientation) * @see simpleScenario.SimpleScenarioPackage#getLane_Orientation() * @model required="true" * @generated */ Orientation getOrientation(); /** * Sets the value of the '{@link simpleScenario.Lane#getOrientation Orientation}' attribute. * * * @param value the new value of the 'Orientation' attribute. * @see simpleScenario.Orientation * @see #getOrientation() * @generated */ void setOrientation(Orientation value); /** * Returns the value of the 'Width' attribute. * The literals are from the enumeration {@link simpleScenario.Size}. * * * @return the value of the 'Width' attribute. * @see simpleScenario.Size * @see #setWidth(Size) * @see simpleScenario.SimpleScenarioPackage#getLane_Width() * @model required="true" * @generated */ Size getWidth(); /** * Sets the value of the '{@link simpleScenario.Lane#getWidth Width}' attribute. * * * @param value the new value of the 'Width' attribute. * @see simpleScenario.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 simpleScenario.SimpleScenarioPackage#getLane_ReferenceCoord() * @model required="true" * @generated */ double getReferenceCoord(); /** * Sets the value of the '{@link simpleScenario.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 'Adjacent' reference list. * The list contents are of type {@link simpleScenario.Lane}. * * * @return the value of the 'Adjacent' reference list. * @see simpleScenario.SimpleScenarioPackage#getLane_Adjacent() * @model upper="2" * @generated */ EList getAdjacent(); /** * Returns the value of the 'Actors' reference list. * The list contents are of type {@link simpleScenario.Actor}. * It is bidirectional and its opposite is '{@link simpleScenario.Actor#getPlacedOn Placed On}'. * * * @return the value of the 'Actors' reference list. * @see simpleScenario.SimpleScenarioPackage#getLane_Actors() * @see simpleScenario.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 simpleScenario.SimpleScenarioPackage#getLane_NumWidth() * @model default="0.0" required="true" derived="true" * @generated */ double getNumWidth(); /** * Sets the value of the '{@link simpleScenario.Lane#getNumWidth Num Width}' attribute. * * * @param value the new value of the 'Num Width' attribute. * @see #getNumWidth() * @generated */ void setNumWidth(double value); } // Lane