static Attribute |
Attribute.read(Attribute attribute,
ClassReader classReader,
int offset,
int length,
char[] charBuffer,
int codeAttributeOffset,
Label[] labels) |
Reads an attribute with the same Attribute.type as the given attribute.
|
protected Attribute |
Attribute.read(ClassReader classReader,
int offset,
int length,
char[] charBuffer,
int codeAttributeOffset,
Label[] labels) |
|
static Label |
Attribute.readLabel(ClassReader classReader,
int bytecodeOffset,
Label[] labels) |
|
protected Label |
ClassReader.readLabel(int bytecodeOffset,
Label[] labels) |
Returns the label corresponding to the given bytecode offset.
|
void |
MethodVisitor.visitJumpInsn(int opcode,
Label label) |
Visits a jump instruction.
|
void |
MethodVisitor.visitLabel(Label label) |
Visits a label.
|
void |
MethodVisitor.visitLineNumber(int line,
Label start) |
Visits a line number declaration.
|
void |
MethodVisitor.visitLocalVariable(java.lang.String name,
java.lang.String descriptor,
java.lang.String signature,
Label start,
Label end,
int index) |
Visits a local variable declaration.
|
AnnotationVisitor |
MethodVisitor.visitLocalVariableAnnotation(int typeRef,
TypePath typePath,
Label[] start,
Label[] end,
int[] index,
java.lang.String descriptor,
boolean visible) |
Visits an annotation on a local variable type.
|
void |
MethodVisitor.visitLookupSwitchInsn(Label dflt,
int[] keys,
Label[] labels) |
Visits a LOOKUPSWITCH instruction.
|
void |
MethodVisitor.visitTableSwitchInsn(int min,
int max,
Label dflt,
Label... labels) |
Visits a TABLESWITCH instruction.
|
void |
MethodVisitor.visitTryCatchBlock(Label start,
Label end,
Label handler,
java.lang.String type) |
Visits a try catch block.
|