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

* The following features are supported: *

* * * @see org.eclipse.viatra.solver.language.solverLanguage.SolverLanguagePackage#getComparison() * @model * @generated */ public interface Comparison 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#getComparison_Left() * @model containment="true" * @generated */ Expression getLeft(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.Comparison#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#getComparison_Op() * @model * @generated */ BinaryOperator getOp(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.Comparison#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#getComparison_Right() * @model containment="true" * @generated */ Expression getRight(); /** * Sets the value of the '{@link org.eclipse.viatra.solver.language.solverLanguage.Comparison#getRight Right}' containment reference. * * * @param value the new value of the 'Right' containment reference. * @see #getRight() * @generated */ void setRight(Expression value); } // Comparison