Package org.codehaus.groovy.ast
Class DynamicVariable
java.lang.Object
org.codehaus.groovy.ast.DynamicVariable
- All Implemented Interfaces:
- Variable
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionReturns the expression used to initialize the variable or null of there is no initialization.intgetName()Returns the name of the variable.Returns the type before wrapping primitives type of the variable.getType()Returns the type of the variable.booleanReturns true if there is an initialization expression.booleanbooleanbooleanReturns true if this variable is used in a static context.voidsetClosureSharedVariable(boolean inClosure) Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.codehaus.groovy.ast.VariableisFinal, isPrivate, isProtected, isPublic, isStatic, isVolatile
- 
Constructor Details- 
DynamicVariable
 
- 
- 
Method Details- 
getTypeDescription copied from interface:VariableReturns the type of the variable.
- 
getNameDescription copied from interface:VariableReturns the name of the variable.
- 
getInitialExpressionDescription copied from interface:VariableReturns the expression used to initialize the variable or null of there is no initialization.- Specified by:
- getInitialExpressionin interface- Variable
 
- 
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
 
- 
isDynamicTypedpublic boolean isDynamicTyped()- Specified by:
- isDynamicTypedin interface- Variable
 
- 
getModifierspublic int getModifiers()- Specified by:
- getModifiersin interface- Variable
 
- 
getOriginTypeDescription copied from interface:VariableReturns the type before wrapping primitives type of the variable.- Specified by:
- getOriginTypein interface- Variable
 
 
-