Package org.codehaus.groovy.ast.expr
Class PropertyExpression
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
- Direct Known Subclasses:
AttributeExpression
Represents a property access such as the expression "foo.bar".
- Version:
- $Revision$
- Author:
- James Strachan
-
Constructor Summary
ConstructorsConstructorDescriptionPropertyExpression(Expression objectExpression, String property) PropertyExpression(Expression objectExpression, Expression property) PropertyExpression(Expression objectExpression, Expression property, boolean safe) -
Method Summary
Modifier and TypeMethodDescriptiongetText()booleanbooleanbooleanisSafe()booleanbooleanisStatic()voidsetImplicitThis(boolean it) voidvoidsetSpreadSafe(boolean value) voidsetStatic(boolean aStatic) toString()transformExpression(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, transformExpressionsMethods inherited from class org.codehaus.groovy.ast.AnnotatedNode
addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSyntheticMethods inherited from class org.codehaus.groovy.ast.ASTNode
copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getNodeMetaData, putNodeMetaData, removeNodeMetaData, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setNodeMetaData, setSourcePosition
-
Constructor Details
-
PropertyExpression
-
PropertyExpression
-
PropertyExpression
-
-
Method Details
-
isStatic
public boolean isStatic() -
visit
-
isDynamic
public boolean isDynamic() -
transformExpression
Description copied from class:ExpressionReturn a copy of the expression calling the transformer on any nested expressions- Specified by:
transformExpressionin classExpression- Parameters:
transformer-
-
getObjectExpression
-
setObjectExpression
-
getProperty
-
getPropertyAsString
-
getText
-
isSafe
public boolean isSafe()- Returns:
- is this a safe navigation, i.e. if true then if the source object is null then this navigation will return null
-
isSpreadSafe
public boolean isSpreadSafe() -
setSpreadSafe
public void setSpreadSafe(boolean value) -
toString
-
setStatic
public void setStatic(boolean aStatic) -
isImplicitThis
public boolean isImplicitThis() -
setImplicitThis
public void setImplicitThis(boolean it)
-