/** */ package hu.bme.mit.inf.dslreasoner.logic.model.logicresult; /** * * A representation of the model object 'Model Result'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.logic.model.logicresult.LogicresultPackage#getModelResult() * @model * @generated */ public interface ModelResult extends LogicResult { /** * Returns the value of the 'Max Integer' attribute. * *

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

* * @return the value of the 'Max Integer' attribute. * @see #setMaxInteger(int) * @see hu.bme.mit.inf.dslreasoner.logic.model.logicresult.LogicresultPackage#getModelResult_MaxInteger() * @model required="true" * @generated */ int getMaxInteger(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logicresult.ModelResult#getMaxInteger Max Integer}' attribute. * * * @param value the new value of the 'Max Integer' attribute. * @see #getMaxInteger() * @generated */ void setMaxInteger(int value); /** * Returns the value of the 'Min Integer' attribute. * *

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

* * @return the value of the 'Min Integer' attribute. * @see #setMinInteger(int) * @see hu.bme.mit.inf.dslreasoner.logic.model.logicresult.LogicresultPackage#getModelResult_MinInteger() * @model required="true" * @generated */ int getMinInteger(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.logic.model.logicresult.ModelResult#getMinInteger Min Integer}' attribute. * * * @param value the new value of the 'Min Integer' attribute. * @see #getMinInteger() * @generated */ void setMinInteger(int value); } // ModelResult