Class ClassNode
- All Implemented Interfaces:
GroovydocHolder<AnnotatedNode>
,NodeMetaDataHandler
,org.objectweb.asm.Opcodes
- Direct Known Subclasses:
CompileUnit.ConstructedOuterNestedClassNode
,DecompiledClassNode
,InnerClassNode
,MixinNode
,WideningCategories.LowestUpperBoundClassNode
public class ClassNode extends AnnotatedNode implements org.objectweb.asm.Opcodes
A ClassNode should be created using the methods in ClassHelper. This ClassNode may be used to represent a class declaration or any other type. This class uses a proxy mechanism allowing to create a class for a plain name at AST creation time. In another phase of the compiler the real ClassNode for the plain name may be found. To avoid the need of exchanging this ClassNode with an instance of the correct ClassNode the correct ClassNode is set as redirect. Most method calls are then redirected to that ClassNode.
There are three types of ClassNodes:
- Primary ClassNodes:
A primary ClassNode is one where we have a source representation which is to be compiled by Groovy and which we have an AST for. The groovy compiler will output one class for each such ClassNode that passes through AsmBytecodeGenerator... not more, not less. That means for example Closures become such ClassNodes too at some point. - ClassNodes create through different sources (typically created
from a java.lang.reflect.Class object):
The compiler will not output classes from these, the methods usually do not contain bodies. These kind of ClassNodes will be used in different checks, but not checks that work on the method bodies. For example if such a ClassNode is a super class to a primary ClassNode, then the abstract method test and others will be done with data based on these. Theoretically it is also possible to mix both (1 and 2) kind of classes in a hierarchy, but this probably works only in the newest Groovy versions. Such ClassNodes normally have to isResolved() returning true without having a redirect.In the Groovy compiler the only version of this, that exists, is a ClassNode created through a Class instance - Labels:
ClassNodes created through ClassHelper.makeWithoutCaching. They are place holders, its redirect points to the real structure, which can be a label too, but following all redirects it should end with a ClassNode from one of the other two categories. If ResolveVisitor finds such a node, it tries to set the redirects. Any such label created after ResolveVisitor has done its work needs to have a redirect pointing to case 1 or 2. If not the compiler may react strange... this can be considered as a kind of dangling pointer.
To describe generic type signature see getGenericsTypes()
and
setGenericsTypes(GenericsType[])
. These methods are not proxied,
they describe the type signature used at the point of declaration or the
type signatures provided by the class. If the type signatures provided
by the class are needed, then a call to redirect()
will help.
- See Also:
ClassHelper
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Class
clazz
static ClassNode[]
EMPTY_ARRAY
protected java.util.List<InnerClassNode>
innerClasses
protected boolean
isPrimaryNode
protected java.lang.Object
lazyInitLock
static ClassNode
SUPER
static ClassNode
THIS
Fields inherited from interface groovy.lang.groovydoc.GroovydocHolder
DOC_COMMENT
Fields inherited from interface org.objectweb.asm.Opcodes
AALOAD, AASTORE, ACC_ABSTRACT, ACC_ANNOTATION, ACC_BRIDGE, ACC_DEPRECATED, ACC_ENUM, ACC_FINAL, ACC_INTERFACE, ACC_MANDATED, ACC_MODULE, ACC_NATIVE, ACC_OPEN, ACC_PRIVATE, ACC_PROTECTED, ACC_PUBLIC, ACC_RECORD, ACC_STATIC, ACC_STATIC_PHASE, ACC_STRICT, ACC_SUPER, ACC_SYNCHRONIZED, ACC_SYNTHETIC, ACC_TRANSIENT, ACC_TRANSITIVE, ACC_VARARGS, ACC_VOLATILE, ACONST_NULL, ALOAD, ANEWARRAY, ARETURN, ARRAYLENGTH, ASM10_EXPERIMENTAL, ASM4, ASM5, ASM6, ASM7, ASM8, ASM9, ASTORE, ATHROW, BALOAD, BASTORE, BIPUSH, CALOAD, CASTORE, CHECKCAST, D2F, D2I, D2L, DADD, DALOAD, DASTORE, DCMPG, DCMPL, DCONST_0, DCONST_1, DDIV, DLOAD, DMUL, DNEG, DOUBLE, DREM, DRETURN, DSTORE, DSUB, DUP, DUP_X1, DUP_X2, DUP2, DUP2_X1, DUP2_X2, F_APPEND, F_CHOP, F_FULL, F_NEW, F_SAME, F_SAME1, F2D, F2I, F2L, FADD, FALOAD, FASTORE, FCMPG, FCMPL, FCONST_0, FCONST_1, FCONST_2, FDIV, FLOAD, FLOAT, FMUL, FNEG, FREM, FRETURN, FSTORE, FSUB, GETFIELD, GETSTATIC, GOTO, H_GETFIELD, H_GETSTATIC, H_INVOKEINTERFACE, H_INVOKESPECIAL, H_INVOKESTATIC, H_INVOKEVIRTUAL, H_NEWINVOKESPECIAL, H_PUTFIELD, H_PUTSTATIC, I2B, I2C, I2D, I2F, I2L, I2S, IADD, IALOAD, IAND, IASTORE, ICONST_0, ICONST_1, ICONST_2, ICONST_3, ICONST_4, ICONST_5, ICONST_M1, IDIV, IF_ACMPEQ, IF_ACMPNE, IF_ICMPEQ, IF_ICMPGE, IF_ICMPGT, IF_ICMPLE, IF_ICMPLT, IF_ICMPNE, IFEQ, IFGE, IFGT, IFLE, IFLT, IFNE, IFNONNULL, IFNULL, IINC, ILOAD, IMUL, INEG, INSTANCEOF, INTEGER, INVOKEDYNAMIC, INVOKEINTERFACE, INVOKESPECIAL, INVOKESTATIC, INVOKEVIRTUAL, IOR, IREM, IRETURN, ISHL, ISHR, ISTORE, ISUB, IUSHR, IXOR, JSR, L2D, L2F, L2I, LADD, LALOAD, LAND, LASTORE, LCMP, LCONST_0, LCONST_1, LDC, LDIV, LLOAD, LMUL, LNEG, LONG, LOOKUPSWITCH, LOR, LREM, LRETURN, LSHL, LSHR, LSTORE, LSUB, LUSHR, LXOR, MONITORENTER, MONITOREXIT, MULTIANEWARRAY, NEW, NEWARRAY, NOP, NULL, POP, POP2, PUTFIELD, PUTSTATIC, RET, RETURN, SALOAD, SASTORE, SIPUSH, SOURCE_DEPRECATED, SOURCE_MASK, SWAP, T_BOOLEAN, T_BYTE, T_CHAR, T_DOUBLE, T_FLOAT, T_INT, T_LONG, T_SHORT, TABLESWITCH, TOP, UNINITIALIZED_THIS, V_PREVIEW, V1_1, V1_2, V1_3, V1_4, V1_5, V1_6, V1_7, V1_8, V10, V11, V12, V13, V14, V15, V16, V17, V18, V19, V20, V21, V9
-
Constructor Summary
Constructors Constructor Description ClassNode(java.lang.Class<?> c)
Creates a non-primaryClassNode
from a real class.ClassNode(java.lang.String name, int modifiers, ClassNode superClass)
ClassNode(java.lang.String name, int modifiers, ClassNode superClass, ClassNode[] interfaces, MixinNode[] mixins)
-
Method Summary
Modifier and Type Method Description ConstructorNode
addConstructor(int modifiers, Parameter[] parameters, ClassNode[] exceptions, Statement code)
void
addConstructor(ConstructorNode node)
FieldNode
addField(java.lang.String name, int modifiers, ClassNode type, Expression initialValue)
void
addField(FieldNode node)
FieldNode
addFieldFirst(java.lang.String name, int modifiers, ClassNode type, Expression initialValue)
void
addFieldFirst(FieldNode node)
void
addInterface(ClassNode type)
MethodNode
addMethod(java.lang.String name, int modifiers, ClassNode returnType, Parameter[] parameters, ClassNode[] exceptions, Statement code)
If a method with the given name and parameters is already defined then it is returned otherwise the given method is added to this node.void
addMethod(MethodNode node)
void
addMixin(MixinNode mixin)
void
addObjectInitializerStatements(Statement statements)
Adds a statement to the object initializer.PropertyNode
addProperty(java.lang.String name, int modifiers, ClassNode type, Expression initialValueExpression, Statement getterBlock, Statement setterBlock)
void
addProperty(PropertyNode node)
void
addStaticInitializerStatements(java.util.List<Statement> staticStatements, boolean fieldInit)
MethodNode
addSyntheticMethod(java.lang.String name, int modifiers, ClassNode returnType, Parameter[] parameters, ClassNode[] exceptions, Statement code)
Adds a synthetic method as part of the compilation process.void
addTransform(java.lang.Class<? extends ASTTransformation> transform, ASTNode node)
GenericsType
asGenericsType()
boolean
declaresAnyInterfaces(ClassNode... classNodes)
boolean
declaresInterface(ClassNode classNode)
boolean
equals(java.lang.Object that)
java.util.List<MethodNode>
getAbstractMethods()
java.util.List<MethodNode>
getAllDeclaredMethods()
java.util.Set<ClassNode>
getAllInterfaces()
java.util.List<AnnotationNode>
getAnnotations()
java.util.List<AnnotationNode>
getAnnotations(ClassNode type)
CompileUnit
getCompileUnit()
ClassNode
getComponentType()
ConstructorNode
getDeclaredConstructor(Parameter[] parameters)
java.util.List<ConstructorNode>
getDeclaredConstructors()
FieldNode
getDeclaredField(java.lang.String name)
Finds a field matching the given name in this class.MethodNode
getDeclaredMethod(java.lang.String name, Parameter[] parameters)
Finds a method matching the given name and parameters in this class.java.util.List<MethodNode>
getDeclaredMethods(java.lang.String name)
This methods returns a list of all methods of the given name defined in the current classjava.util.Map<java.lang.String,MethodNode>
getDeclaredMethodsMap()
MethodNode
getEnclosingMethod()
FieldNode
getField(java.lang.String name)
Finds a field matching the given name in this class or a parent class.java.util.Map<java.lang.String,FieldNode>
getFieldIndex()
java.util.List<FieldNode>
getFields()
GenericsType[]
getGenericsTypes()
MethodNode
getGetterMethod(java.lang.String getterName)
MethodNode
getGetterMethod(java.lang.String getterName, boolean searchSuperClasses)
java.util.Iterator<InnerClassNode>
getInnerClasses()
ClassNode[]
getInterfaces()
MethodNode
getMethod(java.lang.String name, Parameter[] parameters)
Finds a method matching the given name and parameters in this class or any parent class.java.util.List<MethodNode>
getMethods()
java.util.List<MethodNode>
getMethods(java.lang.String name)
This methods creates a list of all methods with this name of the current class and of all super classesMixinNode[]
getMixins()
int
getModifiers()
ModuleNode
getModule()
java.lang.String
getName()
java.lang.String
getNameWithoutPackage()
java.util.List<Statement>
getObjectInitializerStatements()
ClassNode
getOuterClass()
java.util.List<ClassNode>
getOuterClasses()
FieldNode
getOuterField(java.lang.String name)
PackageNode
getPackage()
java.lang.String
getPackageName()
ClassNode
getPlainNodeReference()
java.util.List<PropertyNode>
getProperties()
PropertyNode
getProperty(java.lang.String name)
MethodNode
getSetterMethod(java.lang.String setterName)
MethodNode
getSetterMethod(java.lang.String setterName, boolean voidOnly)
ClassNode
getSuperClass()
java.lang.String
getText()
java.util.Map<java.lang.Class<? extends ASTTransformation>,java.util.Set<ASTNode>>
getTransforms(CompilePhase phase)
java.lang.Class
getTypeClass()
Returns the concrete class this classnode relates to.ClassNode[]
getUnresolvedInterfaces()
ClassNode[]
getUnresolvedInterfaces(boolean useRedirect)
java.lang.String
getUnresolvedName()
ClassNode
getUnresolvedSuperClass()
ClassNode
getUnresolvedSuperClass(boolean useRedirect)
boolean
hasDeclaredMethod(java.lang.String name, Parameter[] parameters)
int
hashCode()
boolean
hasMethod(java.lang.String name, Parameter[] parameters)
boolean
hasPackageName()
boolean
hasPossibleMethod(java.lang.String name, Expression arguments)
Determines if the type has a possibly-matching instance method with the given name and arguments.boolean
hasPossibleStaticMethod(java.lang.String name, Expression arguments)
Checks if the given method has a possibly matching static method with the given name and arguments.boolean
hasProperty(java.lang.String name)
boolean
implementsAnyInterfaces(ClassNode... classNodes)
boolean
implementsInterface(ClassNode classNode)
boolean
isAbstract()
boolean
isAnnotated()
boolean
isAnnotationDefinition()
boolean
isArray()
boolean
isDerivedFrom(ClassNode type)
boolean
isDerivedFromGroovyObject()
boolean
isEnum()
boolean
isGenericsPlaceHolder()
boolean
isInterface()
boolean
isPrimaryClassNode()
boolean
isRedirectNode()
boolean
isResolved()
boolean
isScript()
boolean
isScriptBody()
boolean
isStaticClass()
Is this class declared in a static method (such as a closure / inner class declared in a static method)boolean
isSyntheticPublic()
Indicates that this class has been "promoted" to public by Groovy when in fact there was no public modifier explicitly in the source code.boolean
isUsingGenerics()
ClassNode
makeArray()
Returns aClassNode
representing an array of the type represented by this.protected boolean
parametersEqual(Parameter[] a, Parameter[] b)
void
positionStmtsAfterEnumInitStmts(java.util.List<Statement> staticFieldStatements)
ClassNode
redirect()
Returns theClassNode
this node is a proxy for or the node itself.void
removeConstructor(ConstructorNode node)
void
removeField(java.lang.String oldName)
void
removeMethod(MethodNode node)
void
renameField(java.lang.String oldName, java.lang.String newName)
void
setAnnotated(boolean annotated)
Marks if the current class uses annotations or not.protected void
setCompileUnit(CompileUnit cu)
void
setEnclosingMethod(MethodNode enclosingMethod)
void
setGenericsPlaceHolder(boolean placeholder)
void
setGenericsTypes(GenericsType[] genericsTypes)
void
setInterfaces(ClassNode[] interfaces)
void
setMixins(MixinNode[] mixins)
void
setModifiers(int modifiers)
void
setModule(ModuleNode module)
java.lang.String
setName(java.lang.String name)
void
setRedirect(ClassNode node)
Sets this instance as proxy for the givenClassNode
.void
setScript(boolean script)
void
setScriptBody(boolean scriptBody)
void
setStaticClass(boolean staticClass)
void
setSuperClass(ClassNode superClass)
Sets the superclass of thisClassNode
.void
setSyntheticPublic(boolean syntheticPublic)
void
setUnresolvedSuperClass(ClassNode superClass)
void
setUsingGenerics(boolean usesGenerics)
java.lang.String
toString()
java.lang.String
toString(boolean showRedirect)
MethodNode
tryFindPossibleMethod(java.lang.String name, Expression arguments)
void
visitContents(GroovyClassVisitor visitor)
Methods inherited from class org.codehaus.groovy.ast.AnnotatedNode
addAnnotation, addAnnotations, getDeclaringClass, getGroovydoc, getInstance, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic
Methods inherited from class org.codehaus.groovy.ast.ASTNode
copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePosition, visit
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.codehaus.groovy.ast.NodeMetaDataHandler
copyNodeMetaData, getNodeMetaData, getNodeMetaData, getNodeMetaData, putNodeMetaData, removeNodeMetaData, setNodeMetaData
-
Field Details
-
EMPTY_ARRAY
-
THIS
-
SUPER
-
isPrimaryNode
protected boolean isPrimaryNode -
innerClasses
-
lazyInitLock
protected final java.lang.Object lazyInitLock -
clazz
protected java.lang.Class clazz
-
-
Constructor Details
-
ClassNode
public ClassNode(java.lang.Class<?> c)Creates a non-primaryClassNode
from a real class. -
ClassNode
- Parameters:
name
- the fully-qualified name of the classmodifiers
- the modifiers; seeOpcodes
superClass
- the base class; use "java.lang.Object" if no direct base class
-
ClassNode
public ClassNode(java.lang.String name, int modifiers, ClassNode superClass, ClassNode[] interfaces, MixinNode[] mixins)- Parameters:
name
- the fully-qualified name of the classmodifiers
- the modifiers; seeOpcodes
superClass
- the base class; use "java.lang.Object" if no direct base classinterfaces
- the interfaces for this classmixins
- the mixins for this class
-
-
Method Details
-
redirect
Returns theClassNode
this node is a proxy for or the node itself. -
isRedirectNode
public boolean isRedirectNode() -
setRedirect
Sets this instance as proxy for the givenClassNode
.- Parameters:
node
- the class to redirect to; ifnull
the redirect is removed
-
makeArray
Returns aClassNode
representing an array of the type represented by this. -
isPrimaryClassNode
public boolean isPrimaryClassNode()- Returns:
true
if this instance is a primaryClassNode
-
getEnclosingMethod
-
setEnclosingMethod
-
isSyntheticPublic
public boolean isSyntheticPublic()Indicates that this class has been "promoted" to public by Groovy when in fact there was no public modifier explicitly in the source code. That is, it remembers that it has applied Groovy's "public classes by default" rule. This property is typically only of interest to AST transform writers.- Returns:
true
if node is public but had no explicit public modifier
-
setSyntheticPublic
public void setSyntheticPublic(boolean syntheticPublic) -
setSuperClass
Sets the superclass of thisClassNode
. -
getFields
- Returns:
- the fields associated with this
ClassNode
-
getInterfaces
- Returns:
- the interfaces implemented by this
ClassNode
-
setInterfaces
-
getMixins
- Returns:
- the mixins associated with this
ClassNode
-
setMixins
-
getMethods
- Returns:
- the methods associated with this
ClassNode
-
getAbstractMethods
- Returns:
- the abstract methods associated with this
ClassNode
-
getAllDeclaredMethods
-
getAllInterfaces
-
getDeclaredMethodsMap
-
getName
public java.lang.String getName() -
getUnresolvedName
public java.lang.String getUnresolvedName() -
setName
public java.lang.String setName(java.lang.String name) -
getModifiers
public int getModifiers() -
setModifiers
public void setModifiers(int modifiers) -
getProperties
-
getDeclaredConstructors
-
getDeclaredConstructor
- Returns:
- the constructor matching the given parameters or
null
-
removeConstructor
-
getModule
-
getPackage
-
setModule
-
addField
-
addFieldFirst
-
getFieldIndex
-
addProperty
-
addProperty
public PropertyNode addProperty(java.lang.String name, int modifiers, ClassNode type, Expression initialValueExpression, Statement getterBlock, Statement setterBlock) -
hasProperty
public boolean hasProperty(java.lang.String name) -
getProperty
-
addConstructor
-
addConstructor
public ConstructorNode addConstructor(int modifiers, Parameter[] parameters, ClassNode[] exceptions, Statement code) -
addMethod
-
removeMethod
-
addMethod
public MethodNode addMethod(java.lang.String name, int modifiers, ClassNode returnType, Parameter[] parameters, ClassNode[] exceptions, Statement code)If a method with the given name and parameters is already defined then it is returned otherwise the given method is added to this node. This method is useful for default method adding like getProperty() or invokeMethod() where there may already be a method defined in a class and so the default implementations should not be added if already present. -
hasDeclaredMethod
- See Also:
getDeclaredMethod(String, Parameter[])
-
hasMethod
- See Also:
getMethod(String, Parameter[])
-
addSyntheticMethod
public MethodNode addSyntheticMethod(java.lang.String name, int modifiers, ClassNode returnType, Parameter[] parameters, ClassNode[] exceptions, Statement code)Adds a synthetic method as part of the compilation process. -
addField
public FieldNode addField(java.lang.String name, int modifiers, ClassNode type, Expression initialValue) -
addFieldFirst
public FieldNode addFieldFirst(java.lang.String name, int modifiers, ClassNode type, Expression initialValue) -
addInterface
-
equals
public boolean equals(java.lang.Object that)- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()- Overrides:
hashCode
in classjava.lang.Object
-
addMixin
-
getDeclaredField
Finds a field matching the given name in this class.- Parameters:
name
- the name of the field of interest- Returns:
- the method matching the given name and parameters or null
-
getField
Finds a field matching the given name in this class or a parent class.- Parameters:
name
- the name of the field of interest- Returns:
- the method matching the given name and parameters or null
-
getOuterField
- Returns:
- the field on the outer class or
null
if this is not an inner class
-
getOuterClass
-
getOuterClasses
-
addObjectInitializerStatements
Adds a statement to the object initializer.- Parameters:
statements
- the statement to be added
-
getObjectInitializerStatements
-
addStaticInitializerStatements
public void addStaticInitializerStatements(java.util.List<Statement> staticStatements, boolean fieldInit) -
positionStmtsAfterEnumInitStmts
-
getDeclaredMethods
This methods returns a list of all methods of the given name defined in the current class- Returns:
- the method list
- See Also:
getMethods(String)
-
getMethods
This methods creates a list of all methods with this name of the current class and of all super classes- Returns:
- the methods list
- See Also:
getDeclaredMethods(String)
-
getDeclaredMethod
Finds a method matching the given name and parameters in this class.- Returns:
- the method matching the given name and parameters or null
-
getMethod
Finds a method matching the given name and parameters in this class or any parent class.- Returns:
- the method matching the given name and parameters or null
-
isDerivedFrom
- Parameters:
type
- the ClassNode of interest- Returns:
- true if this node is derived from the given ClassNode
-
isDerivedFromGroovyObject
public boolean isDerivedFromGroovyObject()- Returns:
true
if this type implementsGroovyObject
-
implementsAnyInterfaces
- Parameters:
classNodes
- the class nodes for the interfaces- Returns:
true
if this type implements any of the given interfaces
-
implementsInterface
- Parameters:
classNode
- the class node for the interface- Returns:
true
if this type implements the given interface
-
declaresAnyInterfaces
- Parameters:
classNodes
- the class nodes for the interfaces- Returns:
true
if this type declares that it implements any of the given interfaces or if one of its interfaces extends directly/indirectly any of the given interfaces
-
declaresInterface
- Parameters:
classNode
- the class node for the interface- Returns:
true
if this class declares that it implements the given interface or if one of its interfaces extends directly/indirectly the interface NOTE: Doesn't consider an interface to implement itself. I think this is intended to be called on ClassNodes representing classes, not interfaces.
-
getSuperClass
- Returns:
- the
ClassNode
of the super class of this type
-
getUnresolvedSuperClass
-
getUnresolvedSuperClass
-
setUnresolvedSuperClass
-
getUnresolvedInterfaces
-
getUnresolvedInterfaces
-
getCompileUnit
-
setCompileUnit
-
parametersEqual
- Returns:
true
if the two arrays are of the same size and have the same contents
-
getPackageName
public java.lang.String getPackageName() -
getNameWithoutPackage
public java.lang.String getNameWithoutPackage() -
visitContents
-
getGetterMethod
-
getGetterMethod
-
getSetterMethod
-
getSetterMethod
-
isStaticClass
public boolean isStaticClass()Is this class declared in a static method (such as a closure / inner class declared in a static method) -
setStaticClass
public void setStaticClass(boolean staticClass) -
isScriptBody
public boolean isScriptBody()- Returns:
true
if this inner class or closure was declared inside a script body
-
setScriptBody
public void setScriptBody(boolean scriptBody) -
isScript
public boolean isScript() -
setScript
public void setScript(boolean script) -
toString
public java.lang.String toString()- Overrides:
toString
in classjava.lang.Object
-
toString
public java.lang.String toString(boolean showRedirect) -
hasPossibleMethod
Determines if the type has a possibly-matching instance method with the given name and arguments.- Parameters:
name
- the name of the method of interestarguments
- the arguments to match against- Returns:
- true if a matching method was found
-
tryFindPossibleMethod
-
hasPossibleStaticMethod
Checks if the given method has a possibly matching static method with the given name and arguments.- Parameters:
name
- the name of the method of interestarguments
- the arguments to match against- Returns:
true
if a matching method was found
-
isInterface
public boolean isInterface() -
isAbstract
public boolean isAbstract() -
isResolved
public boolean isResolved() -
isArray
public boolean isArray() -
getComponentType
-
getTypeClass
public java.lang.Class getTypeClass()Returns the concrete class this classnode relates to. However, this method is inherently unsafe as it may return null depending on the compile phase you are using. AST transformations should never use this method directly, but rather obtain a new class node usinggetPlainNodeReference()
.- Returns:
- the class this classnode relates to. May return null.
-
hasPackageName
public boolean hasPackageName() -
setAnnotated
public void setAnnotated(boolean annotated)Marks if the current class uses annotations or not. -
isAnnotated
public boolean isAnnotated() -
asGenericsType
-
getGenericsTypes
-
setGenericsTypes
-
setGenericsPlaceHolder
public void setGenericsPlaceHolder(boolean placeholder) -
isGenericsPlaceHolder
public boolean isGenericsPlaceHolder() -
isUsingGenerics
public boolean isUsingGenerics() -
setUsingGenerics
public void setUsingGenerics(boolean usesGenerics) -
getPlainNodeReference
-
isAnnotationDefinition
public boolean isAnnotationDefinition() -
getAnnotations
- Overrides:
getAnnotations
in classAnnotatedNode
-
getAnnotations
- Overrides:
getAnnotations
in classAnnotatedNode
-
addTransform
-
getTransforms
public java.util.Map<java.lang.Class<? extends ASTTransformation>,java.util.Set<ASTNode>> getTransforms(CompilePhase phase) -
renameField
public void renameField(java.lang.String oldName, java.lang.String newName) -
removeField
public void removeField(java.lang.String oldName) -
isEnum
public boolean isEnum() -
getInnerClasses
- Returns:
- iterator of inner classes defined inside this one
-
getText
public java.lang.String getText()
-