org.codehaus.groovy.ast.expr
Class ClassExpression

java.lang.Object
  extended by org.codehaus.groovy.ast.ASTNode
      extended by org.codehaus.groovy.ast.expr.Expression
          extended by org.codehaus.groovy.ast.expr.ClassExpression

public class ClassExpression
extends Expression

Represents access to a Java/Groovy class in an expression, such as when invoking a static method or accessing a static type

Version:
$Revision: 6778 $
Author:
James Strachan

Constructor Summary
ClassExpression(ClassNode type)
           
 
Method Summary
 String getText()
           
 String toString()
           
 Expression transformExpression(ExpressionTransformer transformer)
          Return a copy of the expression calling the transformer on any nested expressions
 void visit(GroovyCodeVisitor visitor)
           
 
Methods inherited from class org.codehaus.groovy.ast.expr.Expression
getType, setType, transformExpressions
 
Methods inherited from class org.codehaus.groovy.ast.ASTNode
getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setSourcePosition
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ClassExpression

public ClassExpression(ClassNode type)
Method Detail

visit

public void visit(GroovyCodeVisitor visitor)
Overrides:
visit in class ASTNode

transformExpression

public Expression transformExpression(ExpressionTransformer transformer)
Description copied from class: Expression
Return a copy of the expression calling the transformer on any nested expressions

Specified by:
transformExpression in class Expression

getText

public String getText()
Overrides:
getText in class ASTNode

toString

public String toString()
Overrides:
toString in class Object

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