Groovy 1.7.0

org.codehaus.groovy.ast.expr
Class BinaryExpression

java.lang.Object
  org.codehaus.groovy.ast.ASTNode
      org.codehaus.groovy.ast.AnnotatedNode
          org.codehaus.groovy.ast.expr.Expression
              org.codehaus.groovy.ast.expr.BinaryExpression

class BinaryExpression
extends Expression

Represents two expressions and an operation

author:
James Strachan
version:
$Revision: 7922 $


Constructor Summary
BinaryExpression(Expression leftExpression, Token operation, Expression rightExpression)

 
Method Summary
Expression getLeftExpression()

Token getOperation()

Expression getRightExpression()

String getText()

static BinaryExpression newAssignmentExpression(Variable variable, Expression rhs)

Creates an assignment expression in which the specified expression is written into the specified variable name.

static BinaryExpression newInitializationExpression(String variable, ClassNode type, Expression rhs)

Creates variable initialization expression in which the specified expression is written into the specified variable name.

void setLeftExpression(Expression leftExpression)

void setRightExpression(Expression rightExpression)

String toString()

Expression transformExpression(ExpressionTransformer transformer)

void visit(GroovyCodeVisitor visitor)

 
Methods inherited from class Expression
getType, setType, transformExpression, transformExpressions, transformExpressions
 
Methods inherited from class AnnotatedNode
addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, isSynthetic, setDeclaringClass, setSynthetic
 
Methods inherited from class ASTNode
getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getText, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setSourcePosition, visit
 
Methods inherited from class Object
wait, wait, wait, hashCode, getClass, equals, toString, notify, notifyAll
 

Constructor Detail

BinaryExpression

public BinaryExpression(Expression leftExpression, Token operation, Expression rightExpression)


 
Method Detail

getLeftExpression

public Expression getLeftExpression()


getOperation

public Token getOperation()


getRightExpression

public Expression getRightExpression()


getText

public String getText()


newAssignmentExpression

public static BinaryExpression newAssignmentExpression(Variable variable, Expression rhs)
Creates an assignment expression in which the specified expression is written into the specified variable name.


newInitializationExpression

public static BinaryExpression newInitializationExpression(String variable, ClassNode type, Expression rhs)
Creates variable initialization expression in which the specified expression is written into the specified variable name.


setLeftExpression

public void setLeftExpression(Expression leftExpression)


setRightExpression

public void setRightExpression(Expression rightExpression)


toString

public String toString()


transformExpression

public Expression transformExpression(ExpressionTransformer transformer)


visit

public void visit(GroovyCodeVisitor visitor)


 

Copyright © 2003-2009 The Codehaus. All rights reserved.