Package | Description |
---|---|
org.objectweb.asm.jip |
Provides a small and fast bytecode manipulation framework.
|
org.objectweb.asm.jip.attrs |
Provides an implementation for optional class, field and method attributes.
|
org.objectweb.asm.jip.commons |
Provides some useful class and method adapters.
|
Modifier and Type | Method and Description |
---|---|
protected Attribute |
Attribute.read(ClassReader cr,
int off,
int len,
char[] buf,
int codeOff,
Label[] labels)
Reads a
type attribute. |
Modifier and Type | Method and Description |
---|---|
void |
ClassReader.accept(ClassVisitor classVisitor,
Attribute[] attrs,
boolean skipDebug)
Makes the given visitor visit the Java class of this
ClassReader . |
void |
ClassAdapter.visitAttribute(Attribute attr) |
void |
MethodAdapter.visitAttribute(Attribute attr) |
void |
ClassWriter.visitAttribute(Attribute attr) |
void |
FieldVisitor.visitAttribute(Attribute attr)
Visits a non standard attribute of the field.
|
void |
ClassVisitor.visitAttribute(Attribute attr)
Visits a non standard attribute of the class.
|
void |
MethodVisitor.visitAttribute(Attribute attr)
Visits a non standard attribute of this method.
|
Modifier and Type | Class and Description |
---|---|
class |
StackMapAttribute
StackMapAttribute is used by CDLC preverifier.
|
class |
StackMapTableAttribute
The stack map attribute is used during the process of verification by
typechecking (?4.11.1).
|
Modifier and Type | Method and Description |
---|---|
protected Attribute |
StackMapAttribute.read(ClassReader cr,
int off,
int len,
char[] buf,
int codeOff,
Label[] labels) |
protected Attribute |
StackMapTableAttribute.read(ClassReader cr,
int off,
int len,
char[] buf,
int codeOff,
Label[] labels) |
Modifier and Type | Method and Description |
---|---|
void |
EmptyVisitor.visitAttribute(Attribute attr) |