Package org.codehaus.groovy.ast
Class Parameter
java.lang.Object
org.codehaus.groovy.ast.ASTNode
org.codehaus.groovy.ast.AnnotatedNode
org.codehaus.groovy.ast.Parameter
- All Implemented Interfaces:
- GroovydocHolder<AnnotatedNode>,- NodeMetaDataHandler,- Variable
Represents a parameter on a constructor or method call. The type name is
 optional - it defaults to java.lang.Object if unknown.
- 
Field SummaryFieldsFields inherited from interface groovy.lang.groovydoc.GroovydocHolderDOC_COMMENT
- 
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.booleanbooleanbooleanbooleanReturns true if this variable is used in a static context.booleanvoidsetClosureSharedVariable(boolean inClosure) voidvoidsetInStaticContext(boolean inStaticContext) voidsetModifiers(int modifiers) voidvoidtoString()Methods 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, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.codehaus.groovy.ast.NodeMetaDataHandlercopyNodeMetaData, getNodeMetaData, getNodeMetaData, getNodeMetaData, newMetaDataMap, putNodeMetaData, removeNodeMetaData, setNodeMetaDataMethods inherited from interface org.codehaus.groovy.ast.VariableisFinal, isPrivate, isProtected, isPublic, isStatic, isVolatile
- 
Field Details- 
EMPTY_ARRAY
 
- 
- 
Constructor Details- 
Parameter
- 
Parameter
 
- 
- 
Method Details- 
toString
- 
getNameDescription copied from interface:VariableReturns the name of the variable.
- 
getTypeDescription copied from interface:VariableReturns the type of the variable.
- 
setType
- 
getDefaultValue
- 
hasInitialExpressionpublic boolean hasInitialExpression()Description copied from interface:VariableReturns true if there is an initialization expression.- Specified by:
- hasInitialExpressionin interface- 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
 
- 
setInitialExpression
- 
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
 
- 
setInStaticContextpublic void setInStaticContext(boolean inStaticContext) 
- 
isDynamicTypedpublic boolean isDynamicTyped()- Specified by:
- isDynamicTypedin interface- Variable
 
- 
getModifierspublic int getModifiers()- Specified by:
- getModifiersin interface- Variable
 
- 
setModifierspublic void setModifiers(int modifiers) 
- 
getOriginTypeDescription copied from interface:VariableReturns the type before wrapping primitives type of the variable.- Specified by:
- getOriginTypein interface- Variable
 
- 
setOriginType
- 
isImplicitpublic boolean isImplicit()- Since:
- 5.0.0
 
- 
isReceiverpublic boolean isReceiver()- Since:
- 5.0.0
 
 
-