/** */ 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 'Output'. * * *

* The following features are supported: *

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

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

* * @return the value of the 'Event Declaration' reference. * @see #setEventDeclaration(EventDeclaration) * @see hu.bme.mit.inf.dslreasoner.faulttree.model.cft.CftPackage#getOutput_EventDeclaration() * @model required="true" * @generated */ EventDeclaration getEventDeclaration(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.faulttree.model.cft.Output#getEventDeclaration Event Declaration}' reference. * * * @param value the new value of the 'Event Declaration' reference. * @see #getEventDeclaration() * @generated */ void setEventDeclaration(EventDeclaration value); /** * Returns the value of the 'Outgoing Connections' 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#getOutput Output}'. * *

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

* * @return the value of the 'Outgoing Connections' reference list. * @see hu.bme.mit.inf.dslreasoner.faulttree.model.cft.CftPackage#getOutput_OutgoingConnections() * @see hu.bme.mit.inf.dslreasoner.faulttree.model.cft.Connection#getOutput * @model opposite="output" * @generated */ EList getOutgoingConnections(); /** * 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#getOutputs Outputs}'. * *

* 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#getOutput_Component() * @see hu.bme.mit.inf.dslreasoner.faulttree.model.cft.Component#getOutputs * @model opposite="outputs" required="true" transient="false" * @generated */ Component getComponent(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.faulttree.model.cft.Output#getComponent Component}' container reference. * * * @param value the new value of the 'Component' container reference. * @see #getComponent() * @generated */ void setComponent(Component value); } // Output