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

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.faulttree.model.ft.FtPackage#getFaultTree() * @model * @generated */ public interface FaultTree extends EObject { /** * Returns the value of the 'Events' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.faulttree.model.ft.Event}. * *

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

* * @return the value of the 'Events' containment reference list. * @see hu.bme.mit.inf.dslreasoner.faulttree.model.ft.FtPackage#getFaultTree_Events() * @model containment="true" * @generated */ EList getEvents(); /** * 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(Event) * @see hu.bme.mit.inf.dslreasoner.faulttree.model.ft.FtPackage#getFaultTree_TopEvent() * @model required="true" * @generated */ Event getTopEvent(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.faulttree.model.ft.FaultTree#getTopEvent Top Event}' reference. * * * @param value the new value of the 'Top Event' reference. * @see #getTopEvent() * @generated */ void setTopEvent(Event value); } // FaultTree