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

* The following features are supported: *

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