/** */ package org.eclipse.viatra.solver.language.model.problem; /** * * A representation of the model object 'Int Constant'. * * *

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.model.problem.ProblemPackage#getIntConstant() * @model * @generated */ public interface IntConstant extends Constant { /** * Returns the value of the 'Int Value' attribute. * The default value is "0". * * * @return the value of the 'Int Value' attribute. * @see #setIntValue(int) * @see org.eclipse.viatra.solver.language.model.problem.ProblemPackage#getIntConstant_IntValue() * @model default="0" * @generated */ int getIntValue(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.model.problem.IntConstant#getIntValue Int Value}' attribute. * * * @param value the new value of the 'Int Value' attribute. * @see #getIntValue() * @generated */ void setIntValue(int value); } // IntConstant