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 SummaryConstructors Constructor Description StaticMethodCallExpression(ClassNode type, java.lang.String method, Expression arguments)
 - 
Method SummaryAll 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.ExpressiongetType, setType, transformExpressions, transformExpressions
 - 
Methods inherited from class org.codehaus.groovy.ast.AnnotatedNodeaddAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic
 - 
Methods inherited from class org.codehaus.groovy.ast.ASTNodecopyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, getNodeMetaData, getNodeMetaData, putNodeMetaData, removeNodeMetaData, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setNodeMetaData, setSourcePosition
 
- 
 
- 
- 
- 
Constructor Detail- 
StaticMethodCallExpressionpublic StaticMethodCallExpression(ClassNode type, java.lang.String method, Expression arguments) 
 
- 
 - 
Method Detail- 
visitpublic void visit(GroovyCodeVisitor visitor) 
 - 
transformExpressionpublic Expression transformExpression(ExpressionTransformer transformer) Description copied from class:ExpressionReturn a copy of the expression calling the transformer on any nested expressions- Specified by:
- transformExpressionin class- Expression
 
 - 
getReceiverpublic ASTNode getReceiver() - Specified by:
- getReceiverin interface- MethodCall
 
 - 
getMethodAsStringpublic java.lang.String getMethodAsString() - Specified by:
- getMethodAsStringin interface- MethodCall
 
 - 
getArgumentspublic Expression getArguments() - Specified by:
- getArgumentsin interface- MethodCall
 
 - 
getMethodpublic java.lang.String getMethod() 
 - 
getTextpublic java.lang.String getText() - Specified by:
- getTextin interface- MethodCall
- Overrides:
- getTextin class- ASTNode
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 - 
getOwnerTypepublic ClassNode getOwnerType() 
 - 
setOwnerTypepublic void setOwnerType(ClassNode ownerType) 
 - 
setMetaMethodpublic void setMetaMethod(MetaMethod metaMethod) 
 - 
getMetaMethodpublic MetaMethod getMetaMethod() 
 
- 
 
-