/** * generated by Xtext 2.18.0.M3 */ package org.eclipse.viatra.solver.language.solverLanguage; import java.math.BigDecimal; /** * * A representation of the model object 'Real Object'. * * *

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getRealObject() * @model * @generated */ public interface RealObject extends DataObject { /** * 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#getRealObject_Value() * @model * @generated */ BigDecimal getValue(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.RealObject#getValue Value}' attribute. * * * @param value the new value of the 'Value' attribute. * @see #getValue() * @generated */ void setValue(BigDecimal value); } // RealObject