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

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getCastExpression() * @model * @generated */ public interface CastExpression extends Expression { /** * 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#getCastExpression_Body() * @model containment="true" * @generated */ Expression getBody(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.CastExpression#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 'Type' reference. * * * @return the value of the 'Type' reference. * @see #setType(NamedElement) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getCastExpression_Type() * @model * @generated */ NamedElement getType(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.CastExpression#getType Type}' reference. * * * @param value the new value of the 'Type' reference. * @see #getType() * @generated */ void setType(NamedElement value); } // CastExpression