| java.lang.Object com.tc.asm.tree.MemberNode com.tc.asm.tree.ClassNode
Method Summary | |
public void | accept(ClassVisitor cv) Makes the given class visitor visit this class. | public void | visit(int version, int access, String name, String signature, String superName, String[] interfaces) | public void | visitEnd() | public FieldVisitor | visitField(int access, String name, String desc, String signature, Object value) | public void | visitInnerClass(String name, String outerName, String innerName, int access) | public MethodVisitor | visitMethod(int access, String name, String desc, String signature, String[] exceptions) | public void | visitOuterClass(String owner, String name, String desc) | public void | visitSource(String file, String debug) |
access | public int access(Code) | | The class's access flags (see
com.tc.asm.Opcodes ). This
field also indicates if the class is deprecated.
|
fields | public List fields(Code) | | The fields of this class. This list is a list of
FieldNode objects.
|
innerClasses | public List innerClasses(Code) | | Informations about the inner classes of this class. This list is a list
of
InnerClassNode objects.
|
methods | public List methods(Code) | | The methods of this class. This list is a list of
MethodNode objects.
|
outerClass | public String outerClass(Code) | | The internal name of the enclosing class of the class. May be
null.
|
outerMethod | public String outerMethod(Code) | | The name of the method that contains the class, or null if the
class is not enclosed in a method.
|
outerMethodDesc | public String outerMethodDesc(Code) | | The descriptor of the method that contains the class, or null
if the class is not enclosed in a method.
|
signature | public String signature(Code) | | The signature of the class. Mayt be null.
|
sourceDebug | public String sourceDebug(Code) | | Debug information to compute the correspondance between source and
compiled elements of the class. May be null.
|
sourceFile | public String sourceFile(Code) | | The name of the source file from which this class was compiled. May be
null.
|
version | public int version(Code) | | The class version.
|
accept | public void accept(ClassVisitor cv)(Code) | | Makes the given class visitor visit this class.
Parameters: cv - a class visitor. |
visitEnd | public void visitEnd()(Code) | | |
|
|