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
- All Implemented Interfaces:
GroovydocHolder<AnnotatedNode>
,NodeMetaDataHandler
- Direct Known Subclasses:
AttributeExpression
public class PropertyExpression extends Expression
Represents a property access such as the expression "foo.bar".
-
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 PropertyExpression(Expression objectExpression, java.lang.String propertyName)
PropertyExpression(Expression objectExpression, Expression property)
PropertyExpression(Expression objectExpression, Expression property, boolean safe)
-
Method Summary
Modifier and Type Method Description Expression
getObjectExpression()
Expression
getProperty()
java.lang.String
getPropertyAsString()
java.lang.String
getText()
boolean
isDynamic()
boolean
isImplicitThis()
boolean
isSafe()
boolean
isSpreadSafe()
boolean
isStatic()
void
setImplicitThis(boolean implicitThis)
void
setObjectExpression(Expression objectExpression)
void
setSpreadSafe(boolean spreadSafe)
void
setStatic(boolean isStatic)
java.lang.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
getType, setType, 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 Details
-
PropertyExpression
-
PropertyExpression
-
PropertyExpression
-
-
Method Details
-
transformExpression
Description copied from class:Expression
Return a copy of the expression calling the transformer on any nested expressions- Specified by:
transformExpression
in classExpression
-
visit
-
getObjectExpression
-
setObjectExpression
-
getProperty
-
getPropertyAsString
public java.lang.String getPropertyAsString() -
getText
public java.lang.String getText() -
isDynamic
public boolean isDynamic() -
isImplicitThis
public boolean isImplicitThis() -
setImplicitThis
public void setImplicitThis(boolean implicitThis) -
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 spreadSafe) -
isStatic
public boolean isStatic() -
setStatic
public void setStatic(boolean isStatic) -
toString
public java.lang.String toString()- Overrides:
toString
in classjava.lang.Object
-