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

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.faulttree.model.cft.CftPackage#getConnection() * @model * @generated */ public interface Connection extends EObject { /** * Returns the value of the 'Input' container reference. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasoner.faulttree.model.cft.Input#getIncomingConnections Incoming Connections}'. * *

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

* * @return the value of the 'Input' container reference. * @see #setInput(Input) * @see hu.bme.mit.inf.dslreasoner.faulttree.model.cft.CftPackage#getConnection_Input() * @see hu.bme.mit.inf.dslreasoner.faulttree.model.cft.Input#getIncomingConnections * @model opposite="incomingConnections" required="true" transient="false" * @generated */ Input getInput(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.faulttree.model.cft.Connection#getInput Input}' container reference. * * * @param value the new value of the 'Input' container reference. * @see #getInput() * @generated */ void setInput(Input value); /** * Returns the value of the 'Output' reference. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasoner.faulttree.model.cft.Output#getOutgoingConnections Outgoing Connections}'. * *

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

* * @return the value of the 'Output' reference. * @see #setOutput(Output) * @see hu.bme.mit.inf.dslreasoner.faulttree.model.cft.CftPackage#getConnection_Output() * @see hu.bme.mit.inf.dslreasoner.faulttree.model.cft.Output#getOutgoingConnections * @model opposite="outgoingConnections" required="true" * @generated */ Output getOutput(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.faulttree.model.cft.Connection#getOutput Output}' reference. * * * @param value the new value of the 'Output' reference. * @see #getOutput() * @generated */ void setOutput(Output value); } // Connection