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

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.faulttree.model.ft.FtPackage#getExponentialDistribution() * @model * @generated */ public interface ExponentialDistribution extends Distribution { /** * Returns the value of the 'Lambda' attribute. * *

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

* * @return the value of the 'Lambda' attribute. * @see #setLambda(double) * @see hu.bme.mit.inf.dslreasoner.faulttree.model.ft.FtPackage#getExponentialDistribution_Lambda() * @model * @generated */ double getLambda(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.faulttree.model.ft.ExponentialDistribution#getLambda Lambda}' attribute. * * * @param value the new value of the 'Lambda' attribute. * @see #getLambda() * @generated */ void setLambda(double value); } // ExponentialDistribution