/** * generated by Xtext 2.21.0 */ package org.eclipse.viatra.solver.language.solverLanguage; /** * * A representation of the model object 'Interpretation'. * * *

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getInterpretation() * @model * @generated */ public interface Interpretation extends Statement { /** * Returns the value of the 'Body' containment reference. * * * @return the value of the 'Body' containment reference. * @see #setBody(Expression) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getInterpretation_Body() * @model containment="true" * @generated */ Expression getBody(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.Interpretation#getBody Body}' containment reference. * * * @param value the new value of the 'Body' containment reference. * @see #getBody() * @generated */ void setBody(Expression value); /** * Returns the value of the 'Range' containment reference. * * * @return the value of the 'Range' containment reference. * @see #setRange(Expression) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getInterpretation_Range() * @model containment="true" * @generated */ Expression getRange(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.Interpretation#getRange Range}' containment reference. * * * @param value the new value of the 'Range' containment reference. * @see #getRange() * @generated */ void setRange(Expression value); } // Interpretation