/** */ package org.yakindu.base.expressions.expressions; import org.eclipse.emf.common.util.Enumerator; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Binary Expression</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.yakindu.base.expressions.expressions.BinaryExpression#getLeftOperand <em>Left Operand</em>}</li> * <li>{@link org.yakindu.base.expressions.expressions.BinaryExpression#getRightOperand <em>Right Operand</em>}</li> * </ul> * * @see org.yakindu.base.expressions.expressions.ExpressionsPackage#getBinaryExpression() * @model abstract="true" * @generated */ public interface BinaryExpression extends Expression { /** * Returns the value of the '<em><b>Left Operand</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Left Operand</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Left Operand</em>' containment reference. * @see #setLeftOperand(Expression) * @see org.yakindu.base.expressions.expressions.ExpressionsPackage#getBinaryExpression_LeftOperand() * @model containment="true" * @generated */ Expression getLeftOperand(); /** * Sets the value of the '{@link org.yakindu.base.expressions.expressions.BinaryExpression#getLeftOperand <em>Left Operand</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Left Operand</em>' containment reference. * @see #getLeftOperand() * @generated */ void setLeftOperand(Expression value); /** * Returns the value of the '<em><b>Right Operand</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Right Operand</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Right Operand</em>' containment reference. * @see #setRightOperand(Expression) * @see org.yakindu.base.expressions.expressions.ExpressionsPackage#getBinaryExpression_RightOperand() * @model containment="true" * @generated */ Expression getRightOperand(); /** * Sets the value of the '{@link org.yakindu.base.expressions.expressions.BinaryExpression#getRightOperand <em>Right Operand</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Right Operand</em>' containment reference. * @see #getRightOperand() * @generated */ void setRightOperand(Expression value); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model kind="operation" * @generated */ Enumerator getOperator(); } // BinaryExpression