Package org.codehaus.groovy.ast
Class DynamicVariable
- java.lang.Object
- 
- org.codehaus.groovy.ast.DynamicVariable
 
- 
- 
Constructor SummaryConstructors Constructor Description DynamicVariable(java.lang.String name, boolean context)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description ExpressiongetInitialExpression()expression used to initialize the variable or null of there is no initialization.intgetModifiers()java.lang.StringgetName()the name of the variableClassNodegetOriginType()the type before wrapping primitives type of the variableClassNodegetType()the type of the variablebooleanhasInitialExpression()returns true if there is an initialization expressionbooleanisClosureSharedVariable()booleanisDynamicTyped()booleanisInStaticContext()returns true if this variable is used in a static context.voidsetClosureSharedVariable(boolean inClosure)
 
- 
- 
- 
Method Detail- 
getTypepublic ClassNode getType() Description copied from interface:Variablethe type of the variable
 - 
getNamepublic java.lang.String getName() Description copied from interface:Variablethe name of the variable
 - 
getInitialExpressionpublic Expression getInitialExpression() Description copied from interface:Variableexpression 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
 
 - 
isClosureSharedVariablepublic boolean isClosureSharedVariable() - Specified by:
- isClosureSharedVariablein interface- Variable
 
 - 
setClosureSharedVariablepublic void setClosureSharedVariable(boolean inClosure) - Specified by:
- setClosureSharedVariablein interface- Variable
 
 - 
getModifierspublic int getModifiers() - Specified by:
- getModifiersin interface- Variable
 
 - 
getOriginTypepublic ClassNode getOriginType() Description copied from interface:Variablethe type before wrapping primitives type of the variable- Specified by:
- getOriginTypein interface- Variable
 
 
- 
 
-