Package 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". 
- 
- 
Constructor Summary
Constructors Constructor Description AttributeExpression(Expression objectExpression, Expression property)AttributeExpression(Expression objectExpression, Expression property, boolean safe) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description 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.PropertyExpression
getObjectExpression, getProperty, getPropertyAsString, getText, isDynamic, isImplicitThis, isSafe, isSpreadSafe, isStatic, setImplicitThis, setObjectExpression, setSpreadSafe, setStatic, toString 
- 
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, equals, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, getNodeMetaData, getNodeMetaData, hashCode, putNodeMetaData, removeNodeMetaData, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setNodeMetaData, setSourcePosition 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
AttributeExpression
public AttributeExpression(Expression objectExpression, Expression property)
 
- 
AttributeExpression
public AttributeExpression(Expression objectExpression, Expression property, boolean safe)
 
 - 
 
- 
Method Detail
- 
visit
public void visit(GroovyCodeVisitor visitor)
- Overrides:
 visitin classPropertyExpression
 
- 
transformExpression
public Expression transformExpression(ExpressionTransformer transformer)
Description copied from class:ExpressionReturn a copy of the expression calling the transformer on any nested expressions- Overrides:
 transformExpressionin classPropertyExpression
 
 - 
 
 -