/** */ 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.Size}. * * * @return the value of the 'Distance' attribute. * @see simpleScenario.Size * @see #setDistance(Size) * @see simpleScenario.SimpleScenarioPackage#getSeperationDistance_Distance() * @model required="true" * @generated */ Size getDistance(); /** * Sets the value of the '{@link simpleScenario.SeperationDistance#getDistance Distance}' attribute. * * * @param value the new value of the 'Distance' attribute. * @see simpleScenario.Size * @see #getDistance() * @generated */ void setDistance(Size value); } // SeperationDistance