/** */ package simpleScenario; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Relation'. * * *

* The following features are supported: *

* * * @see simpleScenario.SimpleScenarioPackage#getRelation() * @model abstract="true" * @generated */ public interface Relation extends EObject { /** * Returns the value of the 'Target' reference. * * * @return the value of the 'Target' reference. * @see #setTarget(Actor) * @see simpleScenario.SimpleScenarioPackage#getRelation_Target() * @model required="true" * @generated */ Actor getTarget(); /** * Sets the value of the '{@link simpleScenario.Relation#getTarget Target}' reference. * * * @param value the new value of the 'Target' reference. * @see #getTarget() * @generated */ void setTarget(Actor value); } // Relation