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

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getUnaryExpression() * @model * @generated */ public interface UnaryExpression extends Expression { /** * Returns the value of the 'Op' attribute. * The literals are from the enumeration {@link org.eclipse.viatra.solver.language.solverLanguage.UnaryOp}. * * * @return the value of the 'Op' attribute. * @see org.eclipse.viatra.solver.language.solverLanguage.UnaryOp * @see #setOp(UnaryOp) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getUnaryExpression_Op() * @model * @generated */ UnaryOp getOp(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.UnaryExpression#getOp Op}' attribute. * * * @param value the new value of the 'Op' attribute. * @see org.eclipse.viatra.solver.language.solverLanguage.UnaryOp * @see #getOp() * @generated */ void setOp(UnaryOp value); /** * 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#getUnaryExpression_Body() * @model containment="true" * @generated */ Expression getBody(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.UnaryExpression#getBody Body}' containment reference. * * * @param value the new value of the 'Body' containment reference. * @see #getBody() * @generated */ void setBody(Expression value); } // UnaryExpression