Package org.codehaus.groovy.ast
Class PropertyNode
- java.lang.Object
-
- org.codehaus.groovy.ast.ASTNode
-
- org.codehaus.groovy.ast.AnnotatedNode
-
- org.codehaus.groovy.ast.PropertyNode
-
- All Implemented Interfaces:
GroovydocHolder<AnnotatedNode>,NodeMetaDataHandler,Variable
public class PropertyNode extends AnnotatedNode implements Variable
Represents a property (member variable, a getter and setter)
-
-
Field Summary
-
Fields inherited from interface groovy.lang.groovydoc.GroovydocHolder
DOC_COMMENT
-
-
Constructor Summary
Constructors Constructor Description PropertyNode(String name, int modifiers, ClassNode type, ClassNode owner, Expression initialValueExpression, Statement getterBlock, Statement setterBlock)PropertyNode(FieldNode field, int modifiers, Statement getterBlock, Statement setterBlock)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description FieldNodegetField()StatementgetGetterBlock()StringgetGetterName()StringgetGetterNameOrDefault()If an explicit getterName has been set, return that, otherwise return the default name for the property.ExpressiongetInitialExpression()expression used to initialize the variable or null of there is no initialization.intgetModifiers()StringgetName()the name of the variableClassNodegetOriginType()the type before wrapping primitives type of the variableStatementgetSetterBlock()StringgetSetterName()StringgetSetterNameOrDefault()ClassNodegetType()the type of the variablebooleanhasInitialExpression()returns true if there is an initialization expressionbooleanisClosureSharedVariable()booleanisDynamicTyped()booleanisInStaticContext()returns true if this variable is used in a static context.booleanisPrivate()booleanisPublic()booleanisStatic()voidsetClosureSharedVariable(boolean inClosure)Deprecated.not used anymore, has no effectvoidsetField(FieldNode fn)voidsetGetterBlock(Statement getterBlock)voidsetGetterName(String getterName)voidsetSetterBlock(Statement setterBlock)voidsetSetterName(String setterName)voidsetType(ClassNode t)-
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, getText, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePosition, visit
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.codehaus.groovy.ast.NodeMetaDataHandler
copyNodeMetaData, getNodeMetaData, getNodeMetaData, getNodeMetaData, putNodeMetaData, removeNodeMetaData, setNodeMetaData
-
-
-
-
Method Detail
-
getGetterBlock
public Statement getGetterBlock()
-
getInitialExpression
public Expression getInitialExpression()
Description copied from interface:Variableexpression used to initialize the variable or null of there is no initialization.- Specified by:
getInitialExpressionin interfaceVariable
-
setGetterBlock
public void setGetterBlock(Statement getterBlock)
-
setSetterBlock
public void setSetterBlock(Statement setterBlock)
-
getGetterName
public String getGetterName()
-
getGetterNameOrDefault
public String getGetterNameOrDefault()
If an explicit getterName has been set, return that, otherwise return the default name for the property. For a propertyfoo, the default name isgetFooexcept for a boolean property whereisFoois the default if nogetFoomethod exists in the declaring class.
-
setGetterName
public void setGetterName(String getterName)
-
getSetterName
public String getSetterName()
-
getSetterNameOrDefault
public String getSetterNameOrDefault()
-
setSetterName
public void setSetterName(String setterName)
-
getModifiers
public int getModifiers()
- Specified by:
getModifiersin interfaceVariable
-
getName
public String getName()
Description copied from interface:Variablethe name of the variable
-
getSetterBlock
public Statement getSetterBlock()
-
getType
public ClassNode getType()
Description copied from interface:Variablethe type of the variable
-
setType
public void setType(ClassNode t)
-
getField
public FieldNode getField()
-
setField
public void setField(FieldNode fn)
-
isPrivate
public boolean isPrivate()
-
isPublic
public boolean isPublic()
-
isStatic
public boolean isStatic()
-
hasInitialExpression
public boolean hasInitialExpression()
Description copied from interface:Variablereturns true if there is an initialization expression- Specified by:
hasInitialExpressionin interfaceVariable
-
isInStaticContext
public boolean isInStaticContext()
Description copied from interface:Variablereturns true if this variable is used in a static context. A static context is any static initializer block, when this variable is declared as static or when this variable is used in a static method- Specified by:
isInStaticContextin interfaceVariable
-
isDynamicTyped
public boolean isDynamicTyped()
- Specified by:
isDynamicTypedin interfaceVariable
-
isClosureSharedVariable
public boolean isClosureSharedVariable()
- Specified by:
isClosureSharedVariablein interfaceVariable
-
setClosureSharedVariable
@Deprecated public void setClosureSharedVariable(boolean inClosure)
Deprecated.not used anymore, has no effect- Specified by:
setClosureSharedVariablein interfaceVariable
-
getOriginType
public ClassNode getOriginType()
Description copied from interface:Variablethe type before wrapping primitives type of the variable- Specified by:
getOriginTypein interfaceVariable
-
-