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

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.faulttree.model.ft.FtPackage#getConstantModel() * @model * @generated */ public interface ConstantModel extends ReliabilityModel { /** * Returns the value of the 'Failed' attribute. * *

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

* * @return the value of the 'Failed' attribute. * @see #setFailed(boolean) * @see hu.bme.mit.inf.dslreasoner.faulttree.model.ft.FtPackage#getConstantModel_Failed() * @model * @generated */ boolean isFailed(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.faulttree.model.ft.ConstantModel#isFailed Failed}' attribute. * * * @param value the new value of the 'Failed' attribute. * @see #isFailed() * @generated */ void setFailed(boolean value); } // ConstantModel