Package org.codehaus.groovy.ast.expr
Class StaticMethodCallExpression
- java.lang.Object
 - 
- org.codehaus.groovy.ast.ASTNode
 - 
- org.codehaus.groovy.ast.AnnotatedNode
 - 
- org.codehaus.groovy.ast.expr.Expression
 - 
- org.codehaus.groovy.ast.expr.StaticMethodCallExpression
 
 
 
 
 
- 
- All Implemented Interfaces:
 MethodCall
public class StaticMethodCallExpression extends Expression implements MethodCall
A static method call on a class 
- 
- 
Constructor Summary
Constructors Constructor Description StaticMethodCallExpression(ClassNode type, java.lang.String method, Expression arguments) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExpressiongetArguments()MetaMethodgetMetaMethod()java.lang.StringgetMethod()java.lang.StringgetMethodAsString()ClassNodegetOwnerType()ASTNodegetReceiver()java.lang.StringgetText()voidsetMetaMethod(MetaMethod metaMethod)voidsetOwnerType(ClassNode ownerType)java.lang.StringtoString()ExpressiontransformExpression(ExpressionTransformer transformer)Return a copy of the expression calling the transformer on any nested expressionsvoidvisit(GroovyCodeVisitor visitor)- 
Methods inherited from class org.codehaus.groovy.ast.expr.Expression
getType, setType, transformExpressions, transformExpressions 
- 
Methods inherited from class org.codehaus.groovy.ast.AnnotatedNode
addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic 
- 
Methods inherited from class org.codehaus.groovy.ast.ASTNode
copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, getNodeMetaData, getNodeMetaData, putNodeMetaData, removeNodeMetaData, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setNodeMetaData, setSourcePosition 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
StaticMethodCallExpression
public StaticMethodCallExpression(ClassNode type, java.lang.String method, Expression arguments)
 
 - 
 
- 
Method Detail
- 
visit
public void visit(GroovyCodeVisitor visitor)
 
- 
transformExpression
public Expression transformExpression(ExpressionTransformer transformer)
Description copied from class:ExpressionReturn a copy of the expression calling the transformer on any nested expressions- Specified by:
 transformExpressionin classExpression
 
- 
getReceiver
public ASTNode getReceiver()
- Specified by:
 getReceiverin interfaceMethodCall
 
- 
getMethodAsString
public java.lang.String getMethodAsString()
- Specified by:
 getMethodAsStringin interfaceMethodCall
 
- 
getArguments
public Expression getArguments()
- Specified by:
 getArgumentsin interfaceMethodCall
 
- 
getMethod
public java.lang.String getMethod()
 
- 
getText
public java.lang.String getText()
- Specified by:
 getTextin interfaceMethodCall- Overrides:
 getTextin classASTNode
 
- 
toString
public java.lang.String toString()
- Overrides:
 toStringin classjava.lang.Object
 
- 
getOwnerType
public ClassNode getOwnerType()
 
- 
setOwnerType
public void setOwnerType(ClassNode ownerType)
 
- 
setMetaMethod
public void setMetaMethod(MetaMethod metaMethod)
 
- 
getMetaMethod
public MetaMethod getMetaMethod()
 
 - 
 
 -