Java org.objectweb.asm ModuleVisitor fields, constructors, methods, implement or subclass

Example usage for Java org.objectweb.asm ModuleVisitor fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.objectweb.asm ModuleVisitor.

The text is from its open source code.

Implementation

org.objectweb.asm.ModuleVisitor has the following implementations.
Click this link to see all its implementation.

Constructor

Method

voidvisitEnd()
Visits the end of the module.
voidvisitExport(final String packaze, final int access, final String... modules)
Visit an exported package of the current module.
voidvisitMainClass(final String mainClass)
Visit the main class of the current module.
voidvisitOpen(final String packaze, final int access, final String... modules)
Visit an open package of the current module.
voidvisitProvide(final String service, final String... providers)
Visit an implementation of a service.
voidvisitRequire(final String module, final int access, final String version)
Visits a dependence of the current module.
voidvisitUse(final String service)
Visit a service used by the current module.