/** * generated by Xtext 2.21.0 */ package org.eclipse.viatra.solver.language.solverLanguage; import java.math.BigDecimal; /** * * A representation of the model object 'Numeric Literal'. * * *

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getNumericLiteral() * @model * @generated */ public interface NumericLiteral extends Literal { /** * Returns the value of the 'Value' attribute. * * * @return the value of the 'Value' attribute. * @see #setValue(BigDecimal) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getNumericLiteral_Value() * @model * @generated */ BigDecimal getValue(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.NumericLiteral#getValue Value}' attribute. * * * @param value the new value of the 'Value' attribute. * @see #getValue() * @generated */ void setValue(BigDecimal value); } // NumericLiteral