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
Represents a field (member variable)
- 
Field SummaryFields inherited from interface groovy.lang.groovydoc.GroovydocHolderDOC_COMMENT
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleanexpression used to initialize the variable or null of there is no initialization.intgetName()the name of the variablethe type before wrapping primitives type of the variablegetOwner()getType()the type of the variablebooleanreturns true if there is an initialization expressionbooleanDeprecated.booleanbooleanisEnum()booleanisFinal()booleanisHolder()booleanreturns true if this variable is used in a static context.booleanbooleanbooleanisPublic()booleanisStatic()booleanstatic FieldNodevoidvoidsetClosureSharedVariable(boolean inClosure) Deprecated.voidsetHolder(boolean holder) voidsetInitialValueExpression(Expression initialValueExpression) voidsetModifiers(int modifiers) voidvoidvoidMethods inherited from class org.codehaus.groovy.ast.AnnotatedNodeaddAnnotation, addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, getGroovydoc, getInstance, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSyntheticMethods inherited from class org.codehaus.groovy.ast.ASTNodecopyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, getText, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePosition, visitMethods inherited from class java.lang.Objectclone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.codehaus.groovy.ast.NodeMetaDataHandlercopyNodeMetaData, getNodeMetaData, getNodeMetaData, getNodeMetaData, putNodeMetaData, removeNodeMetaData, setNodeMetaData
- 
Constructor Details- 
FieldNodeprotected FieldNode()
- 
FieldNodepublic FieldNode(String name, int modifiers, ClassNode type, ClassNode owner, Expression initialValueExpression) 
 
- 
- 
Method Details- 
newStaticpublic static FieldNode newStatic(Class theClass, String name) throws SecurityException, NoSuchFieldException 
- 
getInitialExpressionDescription copied from interface:Variableexpression used to initialize the variable or null of there is no initialization.- Specified by:
- getInitialExpressionin interface- Variable
 
- 
getModifierspublic int getModifiers()- Specified by:
- getModifiersin interface- Variable
 
- 
getNameDescription copied from interface:Variablethe name of the variable
- 
getTypeDescription copied from interface:Variablethe type of the variable
- 
setType
- 
getOwner
- 
isHolderpublic boolean isHolder()
- 
setHolderpublic void setHolder(boolean holder) 
- 
isDynamicTypedpublic boolean isDynamicTyped()- Specified by:
- isDynamicTypedin interface- Variable
 
- 
setModifierspublic void setModifiers(int modifiers) 
- 
isStaticpublic boolean isStatic()- Returns:
- true if the field is static
 
- 
isEnumpublic boolean isEnum()- Returns:
- true if the field is an enum
 
- 
isFinalpublic boolean isFinal()- Returns:
- true if the field is final
 
- 
isVolatilepublic boolean isVolatile()- Returns:
- true if the field is volatile
 
- 
isPublicpublic boolean isPublic()- Returns:
- true if the field is public
 
- 
isProtectedpublic boolean isProtected()- Returns:
- true if the field is protected
 
- 
isPrivatepublic boolean isPrivate()- Returns:
- true if the field is private
- Since:
- 2.5.0
 
- 
setOwner- Parameters:
- owner- The owner to set.
 
- 
hasInitialExpressionpublic boolean hasInitialExpression()Description copied from interface:Variablereturns true if there is an initialization expression- Specified by:
- hasInitialExpressionin interface- Variable
 
- 
isInStaticContextpublic 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 interface- Variable
 
- 
getInitialValueExpression
- 
setInitialValueExpression
- 
equals
- 
getOriginTypeDescription copied from interface:Variablethe type before wrapping primitives type of the variable- Specified by:
- getOriginTypein interface- Variable
 
- 
setOriginType
- 
rename
 
-