/** */ 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 'Component Fault Tree'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.faulttree.model.cft.CftPackage#getComponentFaultTree() * @model * @generated */ public interface ComponentFaultTree extends EObject { /** * Returns the value of the 'Components' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.faulttree.model.cft.Component}. * *

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

* * @return the value of the 'Components' containment reference list. * @see hu.bme.mit.inf.dslreasoner.faulttree.model.cft.CftPackage#getComponentFaultTree_Components() * @model containment="true" * @generated */ EList getComponents(); /** * Returns the value of the 'Top Event' reference. * *

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

* * @return the value of the 'Top Event' reference. * @see #setTopEvent(Output) * @see hu.bme.mit.inf.dslreasoner.faulttree.model.cft.CftPackage#getComponentFaultTree_TopEvent() * @model required="true" * @generated */ Output getTopEvent(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.faulttree.model.cft.ComponentFaultTree#getTopEvent Top Event}' reference. * * * @param value the new value of the 'Top Event' reference. * @see #getTopEvent() * @generated */ void setTopEvent(Output value); } // ComponentFaultTree