/** */ package crossingScenario; /** * * A representation of the model object 'Separation Distance'. * * *

* The following features are supported: *

* * * @see crossingScenario.CrossingScenarioPackage#getSeparationDistance() * @model * @generated */ public interface SeparationDistance extends SpatialRelation { /** * Returns the value of the 'Distance' attribute. * The literals are from the enumeration {@link crossingScenario.Distance}. * * * @return the value of the 'Distance' attribute. * @see crossingScenario.Distance * @see #setDistance(Distance) * @see crossingScenario.CrossingScenarioPackage#getSeparationDistance_Distance() * @model required="true" * @generated */ Distance getDistance(); /** * Sets the value of the '{@link crossingScenario.SeparationDistance#getDistance Distance}' attribute. * * * @param value the new value of the 'Distance' attribute. * @see crossingScenario.Distance * @see #getDistance() * @generated */ void setDistance(Distance value); } // SeparationDistance