/** */ package hu.bme.mit.inf.dslreasoner.smtLanguage; /** * * A representation of the model object 'SMT Statistic Int Value'. * * *

* The following features are supported: *

*

* * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTStatisticIntValue() * @model * @generated */ public interface SMTStatisticIntValue extends SMTStatisticValue { /** * Returns the value of the 'Value' attribute. * *

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

* * @return the value of the 'Value' attribute. * @see #setValue(int) * @see hu.bme.mit.inf.dslreasoner.smtLanguage.SmtLanguagePackage#getSMTStatisticIntValue_Value() * @model * @generated */ int getValue(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.smtLanguage.SMTStatisticIntValue#getValue Value}' attribute. * * * @param value the new value of the 'Value' attribute. * @see #getValue() * @generated */ void setValue(int value); } // SMTStatisticIntValue