Uses of Class
org.objectweb.asm.ClassVisitor
-
Packages that use ClassVisitor Package Description org.objectweb.asm Provides a small and fast bytecode manipulation framework.org.objectweb.asm.commons Provides some useful class and method adapters.org.objectweb.asm.tree Provides an ASM visitor that constructs a tree representation of the classes it visits.org.objectweb.asm.util Provides ASM visitors that can be useful for programming and debugging purposes.org.objectweb.asm.xml Provides SAX 2.0 adapters for ASM visitors to convert classes to and from XML. -
-
Uses of ClassVisitor in org.objectweb.asm
Subclasses of ClassVisitor in org.objectweb.asm Modifier and Type Class Description classClassWriterAClassVisitorthat generates classes in bytecode form.Fields in org.objectweb.asm declared as ClassVisitor Modifier and Type Field Description protected ClassVisitorClassVisitor. cvThe class visitor to which this visitor must delegate method calls.Methods in org.objectweb.asm with parameters of type ClassVisitor Modifier and Type Method Description voidClassReader. accept(ClassVisitor classVisitor, int flags)Makes the given visitor visit the Java class of thisClassReader.voidClassReader. accept(ClassVisitor classVisitor, Attribute[] attrs, int flags)Makes the given visitor visit the Java class of thisClassReader.Constructors in org.objectweb.asm with parameters of type ClassVisitor Constructor Description ClassVisitor(int api, ClassVisitor cv)Constructs a newClassVisitor. -
Uses of ClassVisitor in org.objectweb.asm.commons
Subclasses of ClassVisitor in org.objectweb.asm.commons Modifier and Type Class Description classClassRemapperAClassVisitorfor type remapping.classRemappingClassAdapterDeprecated.useClassRemapperinstead.classSerialVersionUIDAdderAClassVisitorthat adds a serial version unique identifier to a class if missing.classStaticInitMergerAClassVisitorthat merges clinit methods into a single one.Constructors in org.objectweb.asm.commons with parameters of type ClassVisitor Constructor Description ClassRemapper(int api, ClassVisitor cv, Remapper remapper)ClassRemapper(ClassVisitor cv, Remapper remapper)GeneratorAdapter(int access, Method method, java.lang.String signature, Type[] exceptions, ClassVisitor cv)Creates a newGeneratorAdapter.RemappingClassAdapter(int api, ClassVisitor cv, Remapper remapper)Deprecated.RemappingClassAdapter(ClassVisitor cv, Remapper remapper)Deprecated.SerialVersionUIDAdder(int api, ClassVisitor cv)Creates a newSerialVersionUIDAdder.SerialVersionUIDAdder(ClassVisitor cv)Creates a newSerialVersionUIDAdder.StaticInitMerger(int api, java.lang.String prefix, ClassVisitor cv)StaticInitMerger(java.lang.String prefix, ClassVisitor cv) -
Uses of ClassVisitor in org.objectweb.asm.tree
Subclasses of ClassVisitor in org.objectweb.asm.tree Modifier and Type Class Description classClassNodeA node that represents a class.Methods in org.objectweb.asm.tree with parameters of type ClassVisitor Modifier and Type Method Description voidClassNode. accept(ClassVisitor cv)Makes the given class visitor visit this class.voidFieldNode. accept(ClassVisitor cv)Makes the given class visitor visit this field.voidInnerClassNode. accept(ClassVisitor cv)Makes the given class visitor visit this inner class.voidMethodNode. accept(ClassVisitor cv)Makes the given class visitor visit this method. -
Uses of ClassVisitor in org.objectweb.asm.util
Subclasses of ClassVisitor in org.objectweb.asm.util Modifier and Type Class Description classCheckClassAdapterAClassVisitorthat checks that its methods are properly used.classTraceClassVisitorAClassVisitorthat prints the classes it visits with aPrinter.Constructors in org.objectweb.asm.util with parameters of type ClassVisitor Constructor Description CheckClassAdapter(int api, ClassVisitor cv, boolean checkDataFlow)Constructs a newCheckClassAdapter.CheckClassAdapter(ClassVisitor cv)Constructs a newCheckClassAdapter.CheckClassAdapter(ClassVisitor cv, boolean checkDataFlow)Constructs a newCheckClassAdapter.TraceClassVisitor(ClassVisitor cv, java.io.PrintWriter pw)Constructs a newTraceClassVisitor.TraceClassVisitor(ClassVisitor cv, Printer p, java.io.PrintWriter pw)Constructs a newTraceClassVisitor. -
Uses of ClassVisitor in org.objectweb.asm.xml
Subclasses of ClassVisitor in org.objectweb.asm.xml Modifier and Type Class Description classSAXClassAdapterAClassVisitorthat generates SAX 2.0 events from the visited class.Fields in org.objectweb.asm.xml declared as ClassVisitor Modifier and Type Field Description protected ClassVisitorASMContentHandler. cvCurrent instance of theClassVisitorused to visit classfile bytecode.Constructors in org.objectweb.asm.xml with parameters of type ClassVisitor Constructor Description ASMContentHandler(ClassVisitor cv)Constructs a newASMContentHandlerobject.
-