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) classModuleWriterAModuleVisitorthat 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 ModuleVisitorModuleVisitor. mvThe module visitor to which this visitor must delegate method calls.Methods in org.objectweb.asm that return ModuleVisitor Modifier and Type Method Description ModuleVisitorClassVisitor. visitModule(java.lang.String name, int access, java.lang.String version)Visit the module corresponding to the class.ModuleVisitorClassWriter. 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 classModuleRemapperAModuleVisitorthat remaps types with aRemapper.Methods in org.objectweb.asm.commons that return ModuleVisitor Modifier and Type Method Description protected ModuleVisitorClassRemapper. createModuleRemapper(ModuleVisitor moduleVisitor)Constructs a new remapper for modules.ModuleVisitorClassRemapper. visitModule(java.lang.String name, int flags, java.lang.String version)Methods in org.objectweb.asm.commons with parameters of type ModuleVisitor Modifier and Type Method Description protected ModuleVisitorClassRemapper. 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 classModuleNodeA node that represents a module declaration.Methods in org.objectweb.asm.tree that return ModuleVisitor Modifier and Type Method Description ModuleVisitorClassNode. 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 voidModuleExportNode. accept(ModuleVisitor moduleVisitor)Makes the given module visitor visit this export declaration.voidModuleOpenNode. accept(ModuleVisitor moduleVisitor)Makes the given module visitor visit this opened package.voidModuleProvideNode. accept(ModuleVisitor moduleVisitor)Makes the given module visitor visit this require declaration.voidModuleRequireNode. 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 classCheckModuleAdapterAModuleVisitorthat checks that its methods are properly used.classTraceModuleVisitorAModuleVisitorthat prints the fields it visits with aPrinter.Methods in org.objectweb.asm.util that return ModuleVisitor Modifier and Type Method Description ModuleVisitorCheckClassAdapter. visitModule(java.lang.String name, int access, java.lang.String version)ModuleVisitorTraceClassVisitor. 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.
-