/**
* <copyright>
* </copyright>
*
* $Id$
*/
package org.csu.idl.idlmm;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Binary Expression</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.csu.idl.idlmm.BinaryExpression#getLeft <em>Left</em>}</li>
* <li>{@link org.csu.idl.idlmm.BinaryExpression#getRight <em>Right</em>}</li>
* <li>{@link org.csu.idl.idlmm.BinaryExpression#getOperator <em>Operator</em>}</li>
* </ul>
* </p>
*
* @see org.csu.idl.idlmm.IdlmmPackage#getBinaryExpression()
* @model
* @generated
*/
public interface BinaryExpression extends Expression {
/**
* Returns the value of the '<em><b>Left</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Left</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</em>' containment reference.
* @see #setLeft(Expression)
* @see org.csu.idl.idlmm.IdlmmPackage#getBinaryExpression_Left()
* @model containment="true" required="true"
* @generated
*/
Expression getLeft();
/**
* Sets the value of the '{@link org.csu.idl.idlmm.BinaryExpression#getLeft <em>Left</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Left</em>' containment reference.
* @see #getLeft()
* @generated
*/
void setLeft(Expression value);
/**
* Returns the value of the '<em><b>Right</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Right</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</em>' containment reference.
* @see #setRight(Expression)
* @see org.csu.idl.idlmm.IdlmmPackage#getBinaryExpression_Right()
* @model containment="true" required="true"
* @generated
*/
Expression getRight();
/**
* Sets the value of the '{@link org.csu.idl.idlmm.BinaryExpression#getRight <em>Right</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Right</em>' containment reference.
* @see #getRight()
* @generated
*/
void setRight(Expression value);
/**
* Returns the value of the '<em><b>Operator</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Operator</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Operator</em>' attribute.
* @see #setOperator(String)
* @see org.csu.idl.idlmm.IdlmmPackage#getBinaryExpression_Operator()
* @model required="true"
* @generated
*/
String getOperator();
/**
* Sets the value of the '{@link org.csu.idl.idlmm.BinaryExpression#getOperator <em>Operator</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Operator</em>' attribute.
* @see #getOperator()
* @generated
*/
void setOperator(String value);
} // BinaryExpression