/** */ package simpleScenario; /** * * A representation of the model object 'Seperation Distance'. * * *

* The following features are supported: *

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