org.codehaus.groovy.ast.expr
Class AttributeExpression
java.lang.Object
org.codehaus.groovy.ast.ASTNode
org.codehaus.groovy.ast.AnnotatedNode
org.codehaus.groovy.ast.expr.Expression
org.codehaus.groovy.ast.expr.PropertyExpression
org.codehaus.groovy.ast.expr.AttributeExpression
public class AttributeExpression
- extends PropertyExpression
Represents an attribute access (accessing the field of a class) such as the expression "foo.@bar".
- Version:
- $Revision: 13403 $
- Author:
- James Strachan
Methods inherited from class org.codehaus.groovy.ast.expr.PropertyExpression |
getObjectExpression, getProperty, getPropertyAsString, getText, isDynamic, isImplicitThis, isSafe, isSpreadSafe, isStatic, setImplicitThis, setObjectExpression, setSpreadSafe, setStatic, toString |
AttributeExpression
public AttributeExpression(Expression objectExpression,
Expression property)
AttributeExpression
public AttributeExpression(Expression objectExpression,
Expression property,
boolean safe)
visit
public void visit(GroovyCodeVisitor visitor)
- Overrides:
visit
in class PropertyExpression
transformExpression
public Expression transformExpression(ExpressionTransformer transformer)
- Description copied from class:
Expression
- Return a copy of the expression calling the transformer on any nested expressions
- Overrides:
transformExpression
in class PropertyExpression