org.objectweb.asm.util
public class ASMifierMethodVisitor extends ASMifierAbstractVisitor implements MethodVisitor
| Constructor Summary | |
|---|---|
| ASMifierMethodVisitor()
Constructs a new ASMifierMethodVisitor object. | |
| Method Summary | |
|---|---|
| AnnotationVisitor | visitAnnotationDefault() |
| void | visitCode() |
| void | visitFieldInsn(int opcode, String owner, String name, String desc) |
| void | visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) |
| void | visitIincInsn(int var, int increment) |
| void | visitInsn(int opcode) |
| void | visitIntInsn(int opcode, int operand) |
| void | visitJumpInsn(int opcode, Label label) |
| void | visitLabel(Label label) |
| void | visitLdcInsn(Object cst) |
| void | visitLineNumber(int line, Label start) |
| void | visitLocalVariable(String name, String desc, String signature, Label start, Label end, int index) |
| void | visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels) |
| void | visitMaxs(int maxStack, int maxLocals) |
| void | visitMethodInsn(int opcode, String owner, String name, String desc) |
| void | visitMultiANewArrayInsn(String desc, int dims) |
| AnnotationVisitor | visitParameterAnnotation(int parameter, String desc, boolean visible) |
| void | visitTableSwitchInsn(int min, int max, Label dflt, Label[] labels) |
| void | visitTryCatchBlock(Label start, Label end, Label handler, String type) |
| void | visitTypeInsn(int opcode, String type) |
| void | visitVarInsn(int opcode, int var) |