public interface Variable
interface to mark a AstNode as Variable. Typically these are VariableExpression, FieldNode, PropertyNode and Parameter
Type Params | Return Type | Name and description |
---|---|---|
|
public Expression |
getInitialExpression() Returns the expression used to initialize the variable or null of there is no initialization. |
|
public int |
getModifiers() |
|
public String |
getName() Returns the name of the variable. |
|
public ClassNode |
getOriginType() Returns the type before wrapping primitives type of the variable. |
|
public ClassNode |
getType() Returns the type of the variable. |
|
public boolean |
hasInitialExpression() Returns true if there is an initialization expression. |
|
public boolean |
isClosureSharedVariable() |
|
public boolean |
isDynamicTyped() |
|
public boolean |
isFinal()
|
|
public boolean |
isInStaticContext() Returns true if this variable is used in a static context. |
|
public boolean |
isPrivate()
|
|
public boolean |
isProtected()
|
|
public boolean |
isPublic()
|
|
public boolean |
isStatic()
|
|
public boolean |
isVolatile()
|
|
public void |
setClosureSharedVariable(boolean inClosure) |
Returns the expression used to initialize the variable or null of there is no initialization.
Returns the name of the variable.
Returns the type before wrapping primitives type of the variable.
Returns the type of the variable.
Returns true if there is an initialization expression.
Returns 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