org.codehaus.groovy.ast.expr
Class StaticMethodCallExpression

java.lang.Object
  extended byorg.codehaus.groovy.ast.ASTNode
      extended byorg.codehaus.groovy.ast.expr.Expression
          extended byorg.codehaus.groovy.ast.expr.StaticMethodCallExpression

public class StaticMethodCallExpression
extends Expression

A static method call on a class

Version:
$Revision: 1.4 $
Author:
James Strachan

Field Summary
 
Fields inherited from class org.codehaus.groovy.ast.expr.Expression
type, typeClass, typeResolved
 
Fields inherited from class org.codehaus.groovy.ast.ASTNode
EMPTY_STRING_ARRAY
 
Constructor Summary
StaticMethodCallExpression(String type, String method, Expression arguments)
           
 
Method Summary
 Expression getArguments()
           
 groovy.lang.MetaMethod getMetaMethod()
           
 String getMethod()
           
 String getOwnerType()
           
 String getText()
           
protected  void resolveType(AsmClassGenerator resolver)
           
 void setMetaMethod(groovy.lang.MetaMethod metaMethod)
           
 void setOwnerType(String ownerType)
           
 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
getFailure, getType, getTypeClass, isDynamic, isResolveFailed, isTypeResolved, resolve, setFailure, setResolveFailed, setType, setTypeClass, setTypeResolved, shouldContinue, transformExpressions
 
Methods inherited from class org.codehaus.groovy.ast.ASTNode
getColumnNumber, getLineNumber, setColumnNumber, setCSTNode, setLineNumber
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

StaticMethodCallExpression

public StaticMethodCallExpression(String type,
                                  String method,
                                  Expression arguments)
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
Parameters:
transformer -
Returns:

resolveType

protected void resolveType(AsmClassGenerator resolver)
Specified by:
resolveType in class Expression

getArguments

public Expression getArguments()

getMethod

public String getMethod()

getText

public String getText()
Overrides:
getText in class ASTNode

toString

public String toString()

getOwnerType

public String getOwnerType()

setOwnerType

public void setOwnerType(String ownerType)

setMetaMethod

public void setMetaMethod(groovy.lang.MetaMethod metaMethod)

getMetaMethod

public groovy.lang.MetaMethod getMetaMethod()


Copyright © 2003-2005 The Codehaus. All Rights Reserved.