|
Groovy 2.2.0 | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.codehaus.groovy.ast.ASTNode org.codehaus.groovy.ast.AnnotatedNode org.codehaus.groovy.ast.FieldNode
public class FieldNode extends AnnotatedNode
Represents a field (member variable)
Constructor Summary | |
FieldNode(String name, int modifiers, ClassNode type, ClassNode owner, Expression initialValueExpression)
|
Method Summary | |
---|---|
Expression
|
getInitialExpression()
|
Expression
|
getInitialValueExpression()
|
int
|
getModifiers()
|
String
|
getName()
|
ClassNode
|
getOriginType()
|
ClassNode
|
getOwner()
|
ClassNode
|
getType()
|
boolean
|
hasInitialExpression()
|
boolean
|
isClosureSharedVariable()
@deprecated |
boolean
|
isDynamicTyped()
|
boolean
|
isEnum()
@return true if the field is an enum |
boolean
|
isFinal()
@return true if the field is final |
boolean
|
isHolder()
|
boolean
|
isInStaticContext()
|
boolean
|
isProtected()
@return true if the field is protected |
boolean
|
isPublic()
@return true if the field is public |
boolean
|
isStatic()
@return true if the field is static |
boolean
|
isVolatile()
@return true if the field is volatile |
static FieldNode
|
newStatic(Class theClass, String name)
|
void
|
rename(String name)
|
void
|
setClosureSharedVariable(boolean inClosure)
@deprecated |
void
|
setHolder(boolean holder)
|
void
|
setInitialValueExpression(Expression initialValueExpression)
|
void
|
setModifiers(int modifiers)
|
void
|
setOriginType(ClassNode cn)
|
void
|
setOwner(ClassNode owner)
@param owner The owner to set. |
void
|
setType(ClassNode type)
|
Methods inherited from class AnnotatedNode | |
---|---|
addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic |
Methods inherited from class Object | |
---|---|
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Constructor Detail |
---|
public FieldNode(String name, int modifiers, ClassNode type, ClassNode owner, Expression initialValueExpression)
Method Detail |
---|
public Expression getInitialExpression()
public Expression getInitialValueExpression()
public int getModifiers()
public String getName()
public ClassNode getOriginType()
public ClassNode getOwner()
public ClassNode getType()
public boolean hasInitialExpression()
public boolean isClosureSharedVariable()
public boolean isDynamicTyped()
public boolean isEnum()
public boolean isFinal()
public boolean isHolder()
public boolean isInStaticContext()
public boolean isProtected()
public boolean isPublic()
public boolean isStatic()
public boolean isVolatile()
public static FieldNode newStatic(Class theClass, String name)
public void rename(String name)
public void setClosureSharedVariable(boolean inClosure)
public void setHolder(boolean holder)
public void setInitialValueExpression(Expression initialValueExpression)
public void setModifiers(int modifiers)
public void setOriginType(ClassNode cn)
public void setOwner(ClassNode owner)
owner
- The owner to set.
public void setType(ClassNode type)
Copyright © 2003-2013 The Codehaus. All rights reserved.