|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.codehaus.groovy.ast.ASTNode org.codehaus.groovy.ast.AnnotatedNode org.codehaus.groovy.ast.ClassNode
public class ClassNode
Represents a class in the AST.
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:
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.
ClassHelper
Field Summary | |
---|---|
protected Class |
clazz
|
static ClassNode[] |
EMPTY_ARRAY
|
protected boolean |
isPrimaryNode
|
protected Object |
lazyInitLock
|
static ClassNode |
SUPER
|
static ClassNode |
THIS
|
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_NATIVE, ACC_PRIVATE, ACC_PROTECTED, ACC_PUBLIC, ACC_STATIC, ACC_STRICT, ACC_SUPER, ACC_SYNCHRONIZED, ACC_SYNTHETIC, ACC_TRANSIENT, ACC_VARARGS, ACC_VOLATILE, ACONST_NULL, ALOAD, ANEWARRAY, ARETURN, ARRAYLENGTH, ASTORE, ATHROW, BALOAD, BASTORE, BIPUSH, CALOAD, CASTORE, CHECKCAST, D2F, D2I, D2L, DADD, DALOAD, DASTORE, DCMPG, DCMPL, DCONST_0, DCONST_1, DDIV, DLOAD, DMUL, DNEG, DREM, DRETURN, DSTORE, DSUB, DUP, DUP_X1, DUP_X2, DUP2, DUP2_X1, DUP2_X2, F2D, F2I, F2L, FADD, FALOAD, FASTORE, FCMPG, FCMPL, FCONST_0, FCONST_1, FCONST_2, FDIV, FLOAD, FMUL, FNEG, FREM, FRETURN, FSTORE, FSUB, GETFIELD, GETSTATIC, GOTO, 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, 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, LOOKUPSWITCH, LOR, LREM, LRETURN, LSHL, LSHR, LSTORE, LSUB, LUSHR, LXOR, MONITORENTER, MONITOREXIT, MULTIANEWARRAY, NEW, NEWARRAY, NOP, POP, POP2, PUTFIELD, PUTSTATIC, RET, RETURN, SALOAD, SASTORE, SIPUSH, SWAP, T_BOOLEAN, T_BYTE, T_CHAR, T_DOUBLE, T_FLOAT, T_INT, T_LONG, T_SHORT, TABLESWITCH, V1_1, V1_2, V1_3, V1_4, V1_5, V1_6 |
Constructor Summary | |
---|---|
ClassNode(Class c)
Creates a ClassNode from a real class. |
|
ClassNode(String name,
int modifiers,
ClassNode superClass)
|
|
ClassNode(String name,
int modifiers,
ClassNode superClass,
ClassNode[] interfaces,
MixinNode[] mixins)
|
Method Summary | |
---|---|
void |
addConstructor(ConstructorNode node)
|
ConstructorNode |
addConstructor(int modifiers,
Parameter[] parameters,
ClassNode[] exceptions,
Statement code)
|
void |
addField(FieldNode node)
|
FieldNode |
addField(String name,
int modifiers,
ClassNode type,
Expression initialValue)
|
void |
addInterface(ClassNode type)
|
void |
addMethod(MethodNode node)
|
MethodNode |
addMethod(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 |
addMixin(MixinNode mixin)
|
void |
addObjectInitializerStatements(Statement statements)
|
void |
addProperty(PropertyNode node)
|
PropertyNode |
addProperty(String name,
int modifiers,
ClassNode type,
Expression initialValueExpression,
Statement getterBlock,
Statement setterBlock)
|
void |
addStaticInitializerStatements(List staticStatements,
boolean fieldInit)
|
MethodNode |
addSyntheticMethod(String name,
int modifiers,
ClassNode returnType,
Parameter[] parameters,
ClassNode[] exceptions,
Statement code)
Adds a synthetic method as part of the compilation process |
void |
addTransform(Class<? extends ASTTransformation> transform,
ASTNode node)
|
boolean |
declaresInterface(ClassNode classNode)
|
boolean |
equals(Object o)
|
List |
getAbstractMethods()
Returns a list containing MethodNode objects for each abstract method in the class represented by this ClassNode |
List |
getAllDeclaredMethods()
|
Set |
getAllInterfaces()
|
List |
getAnnotations()
|
List |
getAnnotations(ClassNode type)
|
CompileUnit |
getCompileUnit()
|
ClassNode |
getComponentType()
|
List |
getDeclaredConstructors()
|
FieldNode |
getDeclaredField(String name)
Finds a field matching the given name in this class. |
MethodNode |
getDeclaredMethod(String name,
Parameter[] parameters)
Finds a method matching the given name and parameters in this class. |
List |
getDeclaredMethods(String name)
This methods returns a list of all methods of the given name defined in the current class |
Map |
getDeclaredMethodsMap()
|
MethodNode |
getEnclosingMethod()
|
FieldNode |
getField(String name)
Finds a field matching the given name in this class or a parent class. |
List<FieldNode> |
getFields()
Returns a list containing FieldNode objects for each field in the class represented by this ClassNode |
GenericsType[] |
getGenericsTypes()
|
MethodNode |
getGetterMethod(String getterName)
|
ClassNode[] |
getInterfaces()
Returns an array of ClassNodes representing the interfaces the class implements |
MethodNode |
getMethod(String name,
Parameter[] parameters)
Finds a method matching the given name and parameters in this class or any parent class. |
List<MethodNode> |
getMethods()
Returns a list containing MethodNode objects for each method in the class represented by this ClassNode |
List |
getMethods(String name)
This methods creates a list of all methods with this name of the current class and of all super classes |
MixinNode[] |
getMixins()
|
int |
getModifiers()
|
ModuleNode |
getModule()
|
String |
getName()
|
String |
getNameWithoutPackage()
|
List |
getObjectInitializerStatements()
|
ClassNode |
getOuterClass()
Helper method to avoid casting to inner class |
FieldNode |
getOuterField(String name)
|
String |
getPackageName()
|
ClassNode |
getPlainNodeReference()
|
List |
getProperties()
|
PropertyNode |
getProperty(String name)
|
MethodNode |
getSetterMethod(String setterName)
|
ClassNode |
getSuperClass()
|
Map<Class<? extends ASTTransformation>,Set<ASTNode>> |
getTransforms(CompilePhase phase)
|
Class |
getTypeClass()
|
ClassNode |
getUnresolvedSuperClass()
|
ClassNode |
getUnresolvedSuperClass(boolean useRedirect)
|
boolean |
hasDeclaredMethod(String name,
Parameter[] parameters)
|
int |
hashCode()
|
boolean |
hasMethod(String name,
Parameter[] parameters)
|
boolean |
hasPackageName()
|
boolean |
hasPossibleMethod(String name,
Expression arguments)
Returns true if the given method has a possibly matching instance method with the given name and arguments. |
boolean |
hasPossibleStaticMethod(String name,
Expression arguments)
Returns true if the given method has a possibly matching static method with the given name and arguments. |
boolean |
hasProperty(String name)
|
boolean |
implementsInterface(ClassNode classNode)
|
boolean |
isAnnotated()
|
boolean |
isAnnotationDefinition()
|
boolean |
isArray()
|
boolean |
isDerivedFrom(ClassNode type)
|
boolean |
isDerivedFromGroovyObject()
|
boolean |
isEnum()
|
boolean |
isGenericsPlaceHolder()
|
boolean |
isInterface()
|
boolean |
isPrimaryClassNode()
Returns if this instance is a primary ClassNode |
boolean |
isResolved()
|
boolean |
isScript()
|
boolean |
isScriptBody()
|
boolean |
isStaticClass()
Is this class delcared in a static method (such as a closure / inner class declared in a static method) |
boolean |
isUsingGenerics()
|
ClassNode |
makeArray()
Returns a ClassNode representing an array of the class represented by this ClassNode |
protected boolean |
parametersEqual(Parameter[] a,
Parameter[] b)
|
void |
positionStmtsAfterEnumInitStmts(List<Statement> staticFieldStatements)
|
ClassNode |
redirect()
Returns the ClassNode this ClassNode is redirecting to. |
void |
renameField(String oldName,
String newName)
|
void |
setAnnotated(boolean flag)
Marks if the current class uses annotations or not |
protected void |
setCompileUnit(CompileUnit cu)
|
void |
setEnclosingMethod(MethodNode enclosingMethod)
|
void |
setGenericsPlaceHolder(boolean b)
|
void |
setGenericsTypes(GenericsType[] genericsTypes)
|
void |
setInterfaces(ClassNode[] interfaces)
|
void |
setModifiers(int modifiers)
|
void |
setModule(ModuleNode module)
|
String |
setName(String name)
|
void |
setRedirect(ClassNode cn)
Sets this instance as proxy for the given ClassNode. |
void |
setScript(boolean script)
|
void |
setScriptBody(boolean scriptBody)
|
void |
setStaticClass(boolean staticClass)
|
void |
setSuperClass(ClassNode superClass)
Sets the superclass of this ClassNode |
void |
setUnresolvedSuperClass(ClassNode sn)
|
void |
setUsingGenerics(boolean b)
|
String |
toString()
|
MethodNode |
tryFindPossibleMethod(String name,
Expression arguments)
|
void |
visitContents(GroovyClassVisitor visitor)
|
Methods inherited from class org.codehaus.groovy.ast.AnnotatedNode |
---|
addAnnotation, addAnnotations, getDeclaringClass, isSynthetic, setDeclaringClass, setSynthetic |
Methods inherited from class org.codehaus.groovy.ast.ASTNode |
---|
getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getText, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setSourcePosition, visit |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static ClassNode[] EMPTY_ARRAY
public static ClassNode THIS
public static ClassNode SUPER
protected boolean isPrimaryNode
protected Object lazyInitLock
protected Class clazz
Constructor Detail |
---|
public ClassNode(Class c)
public ClassNode(String name, int modifiers, ClassNode superClass)
name
- is the full name of the classmodifiers
- the modifiers,superClass
- the base class name - use "java.lang.Object" if no direct
base classOpcodes
public ClassNode(String name, int modifiers, ClassNode superClass, ClassNode[] interfaces, MixinNode[] mixins)
name
- is the full name of the classmodifiers
- the modifiers,superClass
- the base class name - use "java.lang.Object" if no direct
base classOpcodes
Method Detail |
---|
public ClassNode redirect()
public void setRedirect(ClassNode cn)
cn
- the class to redirect to. If set to null the redirect will be removedpublic ClassNode makeArray()
public boolean isPrimaryClassNode()
public MethodNode getEnclosingMethod()
public void setEnclosingMethod(MethodNode enclosingMethod)
public void setSuperClass(ClassNode superClass)
public List<FieldNode> getFields()
public ClassNode[] getInterfaces()
public void setInterfaces(ClassNode[] interfaces)
public MixinNode[] getMixins()
public List<MethodNode> getMethods()
public List getAbstractMethods()
public List getAllDeclaredMethods()
public Set getAllInterfaces()
public Map getDeclaredMethodsMap()
public String getName()
public String setName(String name)
public int getModifiers()
public void setModifiers(int modifiers)
public List getProperties()
public List getDeclaredConstructors()
public ModuleNode getModule()
public void setModule(ModuleNode module)
public void addField(FieldNode node)
public void addProperty(PropertyNode node)
public PropertyNode addProperty(String name, int modifiers, ClassNode type, Expression initialValueExpression, Statement getterBlock, Statement setterBlock)
public boolean hasProperty(String name)
public PropertyNode getProperty(String name)
public void addConstructor(ConstructorNode node)
public ConstructorNode addConstructor(int modifiers, Parameter[] parameters, ClassNode[] exceptions, Statement code)
public void addMethod(MethodNode node)
public MethodNode addMethod(String name, int modifiers, ClassNode returnType, Parameter[] parameters, ClassNode[] exceptions, Statement code)
public boolean hasDeclaredMethod(String name, Parameter[] parameters)
public boolean hasMethod(String name, Parameter[] parameters)
getMethod(String, Parameter[])
public MethodNode addSyntheticMethod(String name, int modifiers, ClassNode returnType, Parameter[] parameters, ClassNode[] exceptions, Statement code)
public FieldNode addField(String name, int modifiers, ClassNode type, Expression initialValue)
public void addInterface(ClassNode type)
public boolean equals(Object o)
public int hashCode()
public void addMixin(MixinNode mixin)
public FieldNode getDeclaredField(String name)
name
- the name of the field of interest
public FieldNode getField(String name)
name
- the name of the field of interest
public FieldNode getOuterField(String name)
public ClassNode getOuterClass()
public void addObjectInitializerStatements(Statement statements)
public List getObjectInitializerStatements()
public void addStaticInitializerStatements(List staticStatements, boolean fieldInit)
public void positionStmtsAfterEnumInitStmts(List<Statement> staticFieldStatements)
public List getDeclaredMethods(String name)
getMethods(String)
public List getMethods(String name)
getDeclaredMethods(String)
public MethodNode getDeclaredMethod(String name, Parameter[] parameters)
public MethodNode getMethod(String name, Parameter[] parameters)
public boolean isDerivedFrom(ClassNode type)
type
- the ClassNode of interest
public boolean isDerivedFromGroovyObject()
public boolean implementsInterface(ClassNode classNode)
classNode
- the class node for the interface
public boolean declaresInterface(ClassNode classNode)
classNode
- the class node for the interface
public ClassNode getSuperClass()
public ClassNode getUnresolvedSuperClass()
public ClassNode getUnresolvedSuperClass(boolean useRedirect)
public void setUnresolvedSuperClass(ClassNode sn)
public CompileUnit getCompileUnit()
protected void setCompileUnit(CompileUnit cu)
protected boolean parametersEqual(Parameter[] a, Parameter[] b)
public String getPackageName()
public String getNameWithoutPackage()
public void visitContents(GroovyClassVisitor visitor)
public MethodNode getGetterMethod(String getterName)
public MethodNode getSetterMethod(String setterName)
public boolean isStaticClass()
public void setStaticClass(boolean staticClass)
public boolean isScriptBody()
public void setScriptBody(boolean scriptBody)
public boolean isScript()
public void setScript(boolean script)
public String toString()
public boolean hasPossibleMethod(String name, Expression arguments)
name
- the name of the method of interestarguments
- the arguments to match against
public MethodNode tryFindPossibleMethod(String name, Expression arguments)
public boolean hasPossibleStaticMethod(String name, Expression arguments)
name
- the name of the method of interestarguments
- the arguments to match against
public boolean isInterface()
public boolean isResolved()
public boolean isArray()
public ClassNode getComponentType()
public Class getTypeClass()
public boolean hasPackageName()
public void setAnnotated(boolean flag)
flag
- public boolean isAnnotated()
public GenericsType[] getGenericsTypes()
public void setGenericsTypes(GenericsType[] genericsTypes)
public void setGenericsPlaceHolder(boolean b)
public boolean isGenericsPlaceHolder()
public boolean isUsingGenerics()
public void setUsingGenerics(boolean b)
public ClassNode getPlainNodeReference()
public boolean isAnnotationDefinition()
public List getAnnotations()
getAnnotations
in class AnnotatedNode
public List getAnnotations(ClassNode type)
getAnnotations
in class AnnotatedNode
public void addTransform(Class<? extends ASTTransformation> transform, ASTNode node)
public Map<Class<? extends ASTTransformation>,Set<ASTNode>> getTransforms(CompilePhase phase)
public void renameField(String oldName, String newName)
public boolean isEnum()
|
Copyright © 2003-2010 The Codehaus. All rights reserved. | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |