/** */ package hu.bme.mit.inf.dslreasoner.faulttree.model.ft; /** * * A representation of the model object 'Basic Event'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.faulttree.model.ft.FtPackage#getBasicEvent() * @model * @generated */ public interface BasicEvent extends RandomEvent { /** * Returns the value of the 'Distribution' containment reference. * *

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

* * @return the value of the 'Distribution' containment reference. * @see #setDistribution(Distribution) * @see hu.bme.mit.inf.dslreasoner.faulttree.model.ft.FtPackage#getBasicEvent_Distribution() * @model containment="true" required="true" * @generated */ Distribution getDistribution(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.faulttree.model.ft.BasicEvent#getDistribution Distribution}' containment reference. * * * @param value the new value of the 'Distribution' containment reference. * @see #getDistribution() * @generated */ void setDistribution(Distribution value); } // BasicEvent