/** */ package simpleScenario; /** * * A representation of the model object 'Vision Blocked'. * * *

* The following features are supported: *

* * * @see simpleScenario.SimpleScenarioPackage#getVisionBlocked() * @model * @generated */ public interface VisionBlocked extends SpatialRelation { /** * Returns the value of the 'Blocked By' reference. * * * @return the value of the 'Blocked By' reference. * @see #setBlockedBy(Actor) * @see simpleScenario.SimpleScenarioPackage#getVisionBlocked_BlockedBy() * @model * @generated */ Actor getBlockedBy(); /** * Sets the value of the '{@link simpleScenario.VisionBlocked#getBlockedBy Blocked By}' reference. * * * @param value the new value of the 'Blocked By' reference. * @see #getBlockedBy() * @generated */ void setBlockedBy(Actor value); } // VisionBlocked