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

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getBinaryExpression() * @model * @generated */ public interface BinaryExpression extends Expression { /** * Returns the value of the 'Left' containment reference. * * * @return the value of the 'Left' containment reference. * @see #setLeft(Expression) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getBinaryExpression_Left() * @model containment="true" * @generated */ Expression getLeft(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.BinaryExpression#getLeft Left}' containment reference. * * * @param value the new value of the 'Left' containment reference. * @see #getLeft() * @generated */ void setLeft(Expression value); /** * Returns the value of the 'Op' attribute. * The literals are from the enumeration {@link org.eclipse.viatra.solver.language.solverLanguage.BinaryOperator}. * * * @return the value of the 'Op' attribute. * @see org.eclipse.viatra.solver.language.solverLanguage.BinaryOperator * @see #setOp(BinaryOperator) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getBinaryExpression_Op() * @model * @generated */ BinaryOperator getOp(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.BinaryExpression#getOp Op}' attribute. * * * @param value the new value of the 'Op' attribute. * @see org.eclipse.viatra.solver.language.solverLanguage.BinaryOperator * @see #getOp() * @generated */ void setOp(BinaryOperator value); /** * Returns the value of the 'Right' containment reference. * * * @return the value of the 'Right' containment reference. * @see #setRight(Expression) * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getBinaryExpression_Right() * @model containment="true" * @generated */ Expression getRight(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.BinaryExpression#getRight Right}' containment reference. * * * @param value the new value of the 'Right' containment reference. * @see #getRight() * @generated */ void setRight(Expression value); } // BinaryExpression