Package org.objectweb.asm.util

Provides ASM visitors that can be useful for programming and debugging purposes.

Class Summary

AbstractVisitor An abstract visitor.
ASMifierAbstractVisitor An abstract ASMifier visitor.
ASMifierAnnotationVisitor An AnnotationVisitor that prints the ASM code that generates the annotations it visits.
ASMifierClassVisitor A ClassVisitor that prints the ASM code that generates the classes it visits.
ASMifierFieldVisitor A FieldVisitor that prints the ASM code that generates the fields it visits.
ASMifierMethodVisitor A MethodVisitor that prints the ASM code that generates the methods it visits.
CheckClassAdapter A ClassAdapter that checks that its methods are properly used.
CheckMethodAdapter A MethodAdapter that checks that its methods are properly used.
TraceAbstractVisitor An abstract trace visitor.
TraceAnnotationVisitor An AnnotationVisitor that prints a disassembled view of the annotations it visits.
TraceClassVisitor A ClassVisitor that prints a disassembled view of the classes it visits.
TraceFieldVisitor A FieldVisitor that prints a disassembled view of the fields it visits.
TraceMethodVisitor A MethodVisitor that prints a disassembled view of the methods it visits.
TraceSignatureVisitor ASM: a very small and fast Java bytecode manipulation framework Copyright (c) 2000-2005 INRIA, France Telecom All rights reserved.
Provides ASM visitors that can be useful for programming and debugging purposes. These class visitors are normally not used by applications at runtime. This is why they are bundled in an optional asm-util.jar library that is separated from (but requires) the asm.jar library, which contains the core ASM framework.