Package org.codehaus.groovy.ast
Class FieldNode
- java.lang.Object
-
- org.codehaus.groovy.ast.ASTNode
-
- org.codehaus.groovy.ast.AnnotatedNode
-
- org.codehaus.groovy.ast.FieldNode
-
- All Implemented Interfaces:
GroovydocHolder<AnnotatedNode>,NodeMetaDataHandler,Variable
public class FieldNode extends AnnotatedNode implements Variable
Represents a field (member variable)
-
-
Field Summary
-
Fields inherited from interface groovy.lang.groovydoc.GroovydocHolder
DOC_COMMENT
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description ExpressiongetInitialExpression()expression used to initialize the variable or null of there is no initialization.ExpressiongetInitialValueExpression()intgetModifiers()StringgetName()the name of the variableClassNodegetOriginType()the type before wrapping primitives type of the variableClassNodegetOwner()ClassNodegetType()the type of the variablebooleanhasInitialExpression()returns true if there is an initialization expressionbooleanisClosureSharedVariable()Deprecated.booleanisDynamicTyped()booleanisEnum()booleanisFinal()booleanisHolder()booleanisInStaticContext()returns true if this variable is used in a static context.booleanisPrivate()booleanisProtected()booleanisPublic()booleanisStatic()booleanisVolatile()static FieldNodenewStatic(Class theClass, String name)voidrename(String name)voidsetClosureSharedVariable(boolean inClosure)Deprecated.voidsetHolder(boolean holder)voidsetInitialValueExpression(Expression initialValueExpression)voidsetModifiers(int modifiers)voidsetOriginType(ClassNode cn)voidsetOwner(ClassNode owner)voidsetType(ClassNode type)-
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
-
-
-
-
Constructor Detail
-
FieldNode
protected FieldNode()
-
FieldNode
public FieldNode(String name, int modifiers, ClassNode type, ClassNode owner, Expression initialValueExpression)
-
-
Method Detail
-
newStatic
public static FieldNode newStatic(Class theClass, String name) throws SecurityException, NoSuchFieldException
-
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
-
getModifiers
public int getModifiers()
- Specified by:
getModifiersin interfaceVariable
-
getName
public String getName()
Description copied from interface:Variablethe name of the variable
-
getType
public ClassNode getType()
Description copied from interface:Variablethe type of the variable
-
setType
public void setType(ClassNode type)
-
getOwner
public ClassNode getOwner()
-
isHolder
public boolean isHolder()
-
setHolder
public void setHolder(boolean holder)
-
isDynamicTyped
public boolean isDynamicTyped()
- Specified by:
isDynamicTypedin interfaceVariable
-
setModifiers
public void setModifiers(int modifiers)
-
isStatic
public boolean isStatic()
- Returns:
- true if the field is static
-
isEnum
public boolean isEnum()
- Returns:
- true if the field is an enum
-
isFinal
public boolean isFinal()
- Returns:
- true if the field is final
-
isVolatile
public boolean isVolatile()
- Returns:
- true if the field is volatile
-
isPublic
public boolean isPublic()
- Returns:
- true if the field is public
-
isProtected
public boolean isProtected()
- Returns:
- true if the field is protected
-
isPrivate
public boolean isPrivate()
- Returns:
- true if the field is private
- Since:
- 2.5.0
-
setOwner
public void setOwner(ClassNode owner)
- Parameters:
owner- The owner to set.
-
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
-
getInitialValueExpression
public Expression getInitialValueExpression()
-
setInitialValueExpression
public void setInitialValueExpression(Expression initialValueExpression)
-
isClosureSharedVariable
@Deprecated public boolean isClosureSharedVariable()
Deprecated.- Specified by:
isClosureSharedVariablein interfaceVariable
-
setClosureSharedVariable
@Deprecated public void setClosureSharedVariable(boolean inClosure)
Deprecated.- 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
-
setOriginType
public void setOriginType(ClassNode cn)
-
rename
public void rename(String name)
-
-