Package org.codehaus.groovy.ast.expr
Class FieldExpression
- java.lang.Object
-
- org.codehaus.groovy.ast.ASTNode
-
- org.codehaus.groovy.ast.AnnotatedNode
-
- org.codehaus.groovy.ast.expr.Expression
-
- org.codehaus.groovy.ast.expr.FieldExpression
-
- All Implemented Interfaces:
GroovydocHolder<AnnotatedNode>
,NodeMetaDataHandler
public class FieldExpression extends Expression
Represents a field access such as the expression "this.foo".
-
-
Field Summary
-
Fields inherited from class org.codehaus.groovy.ast.expr.Expression
EMPTY_ARRAY
-
Fields inherited from interface groovy.lang.groovydoc.GroovydocHolder
DOC_COMMENT
-
-
Constructor Summary
Constructors Constructor Description FieldExpression(FieldNode field)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FieldNode
getField()
String
getFieldName()
String
getText()
ClassNode
getType()
boolean
isDynamicTyped()
boolean
isUseReferenceDirectly()
void
setType(ClassNode type)
void
setUseReferenceDirectly(boolean useRef)
String
toString()
Expression
transformExpression(ExpressionTransformer transformer)
Return a copy of the expression calling the transformer on any nested expressionsvoid
visit(GroovyCodeVisitor visitor)
-
Methods inherited from class org.codehaus.groovy.ast.expr.Expression
transformExpressions, transformExpressions
-
Methods inherited from class org.codehaus.groovy.ast.AnnotatedNode
addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, getGroovydoc, getInstance, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic
-
Methods inherited from class org.codehaus.groovy.ast.ASTNode
copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePosition
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.codehaus.groovy.ast.NodeMetaDataHandler
copyNodeMetaData, getNodeMetaData, getNodeMetaData, getNodeMetaData, putNodeMetaData, removeNodeMetaData, setNodeMetaData
-
-
-
-
Constructor Detail
-
FieldExpression
public FieldExpression(FieldNode field)
-
-
Method Detail
-
visit
public void visit(GroovyCodeVisitor visitor)
-
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 classExpression
-
getFieldName
public String getFieldName()
-
getField
public FieldNode getField()
-
getType
public ClassNode getType()
- Overrides:
getType
in classExpression
-
setType
public void setType(ClassNode type)
- Overrides:
setType
in classExpression
-
isDynamicTyped
public boolean isDynamicTyped()
-
isUseReferenceDirectly
public boolean isUseReferenceDirectly()
-
setUseReferenceDirectly
public void setUseReferenceDirectly(boolean useRef)
-
-