Package org.objectweb.asm.util
package org.objectweb.asm.util
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.- Since:
- ASM 1.3.2
-
ClassDescriptionA
Printerthat prints the ASM code to generate the classes it visits.AnAttributethat can generate the ASM code to create an equivalent attribute.AnAnnotationVisitorthat checks that its methods are properly used.AClassVisitorthat checks that its methods are properly used.AFieldVisitorthat checks that its methods are properly used.AMethodVisitorthat checks that its methods are properly used.AModuleVisitorthat checks that its methods are properly used.ARecordComponentVisitorthat checks that its methods are properly used.ASignatureVisitorthat checks that its methods are properly used.An abstract converter from visit events to text.APrinterthat prints a disassembled view of the classes it visits.AnAttributethat can print a readable representation of itself.AnAnnotationVisitorthat prints the annotations it visits with aPrinter.AClassVisitorthat prints the classes it visits with aPrinter.AFieldVisitorthat prints the fields it visits with aPrinter.AMethodVisitorthat prints the methods it visits with aPrinter.AModuleVisitorthat prints the fields it visits with aPrinter.ARecordComponentVisitorthat prints the record components it visits with aPrinter.ASignatureVisitorthat builds the Java generic type declaration corresponding to the signature it visits.