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 SummaryFields inherited from class org.codehaus.groovy.ast.expr.ExpressionEMPTY_ARRAYFields inherited from interface groovy.lang.groovydoc.GroovydocHolderDOC_COMMENT
- 
Constructor SummaryConstructors Constructor Description PropertyExpression(Expression objectExpression, java.lang.String propertyName)PropertyExpression(Expression objectExpression, Expression property)PropertyExpression(Expression objectExpression, Expression property, boolean safe)
- 
Method SummaryModifier and Type Method Description ExpressiongetObjectExpression()ExpressiongetProperty()java.lang.StringgetPropertyAsString()java.lang.StringgetText()booleanisDynamic()booleanisImplicitThis()booleanisSafe()booleanisSpreadSafe()booleanisStatic()voidsetImplicitThis(boolean implicitThis)voidsetObjectExpression(Expression objectExpression)voidsetSpreadSafe(boolean spreadSafe)voidsetStatic(boolean isStatic)java.lang.StringtoString()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.ExpressiongetType, setType, transformExpressions, transformExpressionsMethods inherited from class org.codehaus.groovy.ast.AnnotatedNodeaddAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, getGroovydoc, getInstance, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSyntheticMethods inherited from class org.codehaus.groovy.ast.ASTNodecopyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePositionMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.codehaus.groovy.ast.NodeMetaDataHandlercopyNodeMetaData, getNodeMetaData, getNodeMetaData, getNodeMetaData, putNodeMetaData, removeNodeMetaData, setNodeMetaData
- 
Constructor Details- 
PropertyExpression
- 
PropertyExpression
- 
PropertyExpression
 
- 
- 
Method Details- 
transformExpressionDescription copied from class:ExpressionReturn a copy of the expression calling the transformer on any nested expressions- Specified by:
- transformExpressionin class- Expression
 
- 
visit
- 
getObjectExpression
- 
setObjectExpression
- 
getProperty
- 
getPropertyAsStringpublic java.lang.String getPropertyAsString()
- 
getTextpublic java.lang.String getText()
- 
isDynamicpublic boolean isDynamic()
- 
isImplicitThispublic boolean isImplicitThis()
- 
setImplicitThispublic void setImplicitThis(boolean implicitThis)
- 
isSafepublic 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
 
- 
isSpreadSafepublic boolean isSpreadSafe()
- 
setSpreadSafepublic void setSpreadSafe(boolean spreadSafe)
- 
isStaticpublic boolean isStatic()
- 
setStaticpublic void setStatic(boolean isStatic)
- 
toStringpublic java.lang.String toString()- Overrides:
- toStringin class- java.lang.Object
 
 
-