| Package | Description |
|---|---|
| org.objectweb.asm |
Provides a small and fast bytecode manipulation framework.
|
| Modifier and Type | Class | Description |
|---|---|---|
class |
ClassWriter |
A
ClassVisitor that generates a corresponding ClassFile structure, as defined in the Java
Virtual Machine Specification (JVMS). |
| Modifier and Type | Field | Description |
|---|---|---|
protected ClassVisitor |
ClassVisitor.cv |
The class visitor to which this visitor must delegate method calls.
|
| Modifier and Type | Method | Description |
|---|---|---|
void |
ClassReader.accept(ClassVisitor classVisitor,
int parsingOptions) |
Makes the given visitor visit the JVMS ClassFile structure passed to the constructor of this
ClassReader. |
void |
ClassReader.accept(ClassVisitor classVisitor,
Attribute[] attributePrototypes,
int parsingOptions) |
Makes the given visitor visit the JVMS ClassFile structure passed to the constructor of this
ClassReader. |
| Constructor | Description |
|---|---|
ClassVisitor(int api,
ClassVisitor classVisitor) |
Constructs a new
ClassVisitor. |