/** */ package hu.bme.mit.inf.dslreasoner.faulttree.model.cft; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Input'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.faulttree.model.cft.CftPackage#getInput() * @model * @generated */ public interface Input extends EObject { /** * Returns the value of the 'Input Event' reference. * *

* If the meaning of the 'Input Event' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Input Event' reference. * @see #setInputEvent(InputEvent) * @see hu.bme.mit.inf.dslreasoner.faulttree.model.cft.CftPackage#getInput_InputEvent() * @model required="true" * @generated */ InputEvent getInputEvent(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.faulttree.model.cft.Input#getInputEvent Input Event}' reference. * * * @param value the new value of the 'Input Event' reference. * @see #getInputEvent() * @generated */ void setInputEvent(InputEvent value); /** * Returns the value of the 'Component' container reference. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasoner.faulttree.model.cft.Component#getInputs Inputs}'. * *

* If the meaning of the 'Component' container reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Component' container reference. * @see #setComponent(Component) * @see hu.bme.mit.inf.dslreasoner.faulttree.model.cft.CftPackage#getInput_Component() * @see hu.bme.mit.inf.dslreasoner.faulttree.model.cft.Component#getInputs * @model opposite="inputs" required="true" transient="false" * @generated */ Component getComponent(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.faulttree.model.cft.Input#getComponent Component}' container reference. * * * @param value the new value of the 'Component' container reference. * @see #getComponent() * @generated */ void setComponent(Component value); /** * Returns the value of the 'Incoming Connections' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.faulttree.model.cft.Connection}. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasoner.faulttree.model.cft.Connection#getInput Input}'. * *

* If the meaning of the 'Incoming Connections' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Incoming Connections' containment reference list. * @see hu.bme.mit.inf.dslreasoner.faulttree.model.cft.CftPackage#getInput_IncomingConnections() * @see hu.bme.mit.inf.dslreasoner.faulttree.model.cft.Connection#getInput * @model opposite="input" containment="true" * @generated */ EList getIncomingConnections(); } // Input