Interface BinaryExpression
-
- All Superinterfaces:
org.eclipse.emf.ecore.EObject,Expression,org.eclipse.emf.common.notify.Notifier
- All Known Implementing Classes:
BinaryExpressionImpl
public interface BinaryExpression extends Expression
A representation of the model object 'Binary Expression'.The following features are supported:
- See Also:
RtPackage.getBinaryExpression()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExpressiongetLeft()Returns the value of the 'Left' containment reference.BinaryOperationgetOperation()Returns the value of the 'Operation' attribute.ExpressiongetRight()Returns the value of the 'Right' containment reference.voidsetLeft(Expression value)Sets the value of the 'Left' containment reference.voidsetOperation(BinaryOperation value)Sets the value of the 'Operation' attribute.voidsetRight(Expression value)Sets the value of the 'Right' containment reference.
-
-
-
Method Detail
-
getOperation
BinaryOperation getOperation()
Returns the value of the 'Operation' attribute. The literals are from the enumerationBinaryOperation.- Returns:
- the value of the 'Operation' attribute.
- See Also:
BinaryOperation,setOperation(BinaryOperation),RtPackage.getBinaryExpression_Operation()
-
setOperation
void setOperation(BinaryOperation value)
Sets the value of the 'Operation' attribute.- Parameters:
value- the new value of the 'Operation' attribute.- See Also:
BinaryOperation,getOperation()
-
getLeft
Expression getLeft()
Returns the value of the 'Left' containment reference.- Returns:
- the value of the 'Left' containment reference.
- See Also:
setLeft(Expression),RtPackage.getBinaryExpression_Left()
-
setLeft
void setLeft(Expression value)
Sets the value of the 'Left' containment reference.- Parameters:
value- the new value of the 'Left' containment reference.- See Also:
getLeft()
-
getRight
Expression getRight()
Returns the value of the 'Right' containment reference.- Returns:
- the value of the 'Right' containment reference.
- See Also:
setRight(Expression),RtPackage.getBinaryExpression_Right()
-
setRight
void setRight(Expression value)
Sets the value of the 'Right' containment reference.- Parameters:
value- the new value of the 'Right' containment reference.- See Also:
getRight()
-
-