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

* The following features are supported: *

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

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

* * @return the value of the 'P' attribute. * @see #setP(double) * @see hu.bme.mit.inf.dslreasoner.faulttree.model.ft.FtPackage#getConstantDistribution_P() * @model * @generated */ double getP(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.faulttree.model.ft.ConstantDistribution#getP P}' attribute. * * * @param value the new value of the 'P' attribute. * @see #getP() * @generated */ void setP(double value); } // ConstantDistribution