/** */ package crossingScenario; /** * * A representation of the model object 'Collision Exists'. * * *

* The following features are supported: *

* * * @see crossingScenario.CrossingScenarioPackage#getCollisionExists() * @model * @generated */ public interface CollisionExists extends Relation { /** * Returns the value of the 'Collision Time' attribute. * * * @return the value of the 'Collision Time' attribute. * @see #setCollisionTime(double) * @see crossingScenario.CrossingScenarioPackage#getCollisionExists_CollisionTime() * @model required="true" * @generated */ double getCollisionTime(); /** * Sets the value of the '{@link crossingScenario.CollisionExists#getCollisionTime Collision Time}' attribute. * * * @param value the new value of the 'Collision Time' attribute. * @see #getCollisionTime() * @generated */ void setCollisionTime(double value); } // CollisionExists