Uses of Class
org.objectweb.asm.ModuleVisitor
-
Packages that use ModuleVisitor 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. -
-
Uses of ModuleVisitor in org.objectweb.asm
Subclasses of ModuleVisitor in org.objectweb.asm Modifier and Type Class Description (package private) class
ModuleWriter
AModuleVisitor
that generates the corresponding Module, ModulePackages and ModuleMainClass attributes, as defined in the Java Virtual Machine Specification (JVMS).Fields in org.objectweb.asm declared as ModuleVisitor Modifier and Type Field Description protected ModuleVisitor
ModuleVisitor. mv
The module visitor to which this visitor must delegate method calls.Methods in org.objectweb.asm that return ModuleVisitor Modifier and Type Method Description ModuleVisitor
ClassVisitor. visitModule(java.lang.String name, int access, java.lang.String version)
Visit the module corresponding to the class.ModuleVisitor
ClassWriter. visitModule(java.lang.String name, int access, java.lang.String version)
Constructors in org.objectweb.asm with parameters of type ModuleVisitor Constructor Description ModuleVisitor(int api, ModuleVisitor moduleVisitor)
Constructs a newModuleVisitor
. -
Uses of ModuleVisitor in org.objectweb.asm.commons
Subclasses of ModuleVisitor in org.objectweb.asm.commons Modifier and Type Class Description class
ModuleRemapper
AModuleVisitor
that remaps types with aRemapper
.Methods in org.objectweb.asm.commons that return ModuleVisitor Modifier and Type Method Description protected ModuleVisitor
ClassRemapper. createModuleRemapper(ModuleVisitor moduleVisitor)
Constructs a new remapper for modules.ModuleVisitor
ClassRemapper. visitModule(java.lang.String name, int flags, java.lang.String version)
ModuleVisitor
RemappingClassAdapter. visitModule(java.lang.String name, int flags, java.lang.String version)
Deprecated.Methods in org.objectweb.asm.commons with parameters of type ModuleVisitor Modifier and Type Method Description protected ModuleVisitor
ClassRemapper. createModuleRemapper(ModuleVisitor moduleVisitor)
Constructs a new remapper for modules.Constructors in org.objectweb.asm.commons with parameters of type ModuleVisitor Constructor Description ModuleRemapper(int api, ModuleVisitor moduleVisitor, Remapper remapper)
Constructs a newModuleRemapper
.ModuleRemapper(ModuleVisitor moduleVisitor, Remapper remapper)
Constructs a newModuleRemapper
. -
Uses of ModuleVisitor in org.objectweb.asm.tree
Subclasses of ModuleVisitor in org.objectweb.asm.tree Modifier and Type Class Description class
ModuleNode
A node that represents a module declaration.Methods in org.objectweb.asm.tree that return ModuleVisitor Modifier and Type Method Description ModuleVisitor
ClassNode. visitModule(java.lang.String name, int access, java.lang.String version)
Methods in org.objectweb.asm.tree with parameters of type ModuleVisitor Modifier and Type Method Description void
ModuleExportNode. accept(ModuleVisitor moduleVisitor)
Makes the given module visitor visit this export declaration.void
ModuleOpenNode. accept(ModuleVisitor moduleVisitor)
Makes the given module visitor visit this opened package.void
ModuleProvideNode. accept(ModuleVisitor moduleVisitor)
Makes the given module visitor visit this require declaration.void
ModuleRequireNode. accept(ModuleVisitor moduleVisitor)
Makes the given module visitor visit this require directive. -
Uses of ModuleVisitor in org.objectweb.asm.util
Subclasses of ModuleVisitor in org.objectweb.asm.util Modifier and Type Class Description class
CheckModuleAdapter
AModuleVisitor
that checks that its methods are properly used.class
TraceModuleVisitor
AModuleVisitor
that prints the fields it visits with aPrinter
.Methods in org.objectweb.asm.util that return ModuleVisitor Modifier and Type Method Description ModuleVisitor
CheckClassAdapter. visitModule(java.lang.String name, int access, java.lang.String version)
ModuleVisitor
TraceClassVisitor. visitModule(java.lang.String name, int flags, java.lang.String version)
Constructors in org.objectweb.asm.util with parameters of type ModuleVisitor Constructor Description CheckModuleAdapter(int api, ModuleVisitor moduleVisitor, boolean isOpen)
Constructs a newCheckModuleAdapter
.CheckModuleAdapter(ModuleVisitor moduleVisitor, boolean isOpen)
Constructs a newCheckModuleAdapter
.TraceModuleVisitor(ModuleVisitor moduleVisitor, Printer printer)
Constructs a newTraceModuleVisitor
.
-