public class EmptyMethodVisitor
extends java.lang.Object
implements net.sf.cglib.asm.MethodVisitor
Constructor and Description |
---|
EmptyMethodVisitor() |
Modifier and Type | Method and Description |
---|---|
net.sf.cglib.asm.AnnotationVisitor |
visitAnnotation(java.lang.String desc,
boolean visible) |
net.sf.cglib.asm.AnnotationVisitor |
visitAnnotationDefault() |
void |
visitAttribute(net.sf.cglib.asm.Attribute attr) |
void |
visitCode() |
void |
visitEnd() |
void |
visitFieldInsn(int opcode,
java.lang.String owner,
java.lang.String name,
java.lang.String desc) |
void |
visitFrame(int type,
int nLocal,
java.lang.Object[] local,
int nStack,
java.lang.Object[] stack) |
void |
visitIincInsn(int var,
int increment) |
void |
visitInsn(int opcode) |
void |
visitIntInsn(int opcode,
int operand) |
void |
visitJumpInsn(int opcode,
net.sf.cglib.asm.Label label) |
void |
visitLabel(net.sf.cglib.asm.Label label) |
void |
visitLdcInsn(java.lang.Object cst) |
void |
visitLineNumber(int line,
net.sf.cglib.asm.Label start) |
void |
visitLocalVariable(java.lang.String name,
java.lang.String desc,
java.lang.String signature,
net.sf.cglib.asm.Label start,
net.sf.cglib.asm.Label end,
int index) |
void |
visitLookupSwitchInsn(net.sf.cglib.asm.Label dflt,
int[] keys,
net.sf.cglib.asm.Label[] labels) |
void |
visitMaxs(int maxStack,
int maxLocals) |
void |
visitMethodInsn(int opcode,
java.lang.String owner,
java.lang.String name,
java.lang.String desc) |
void |
visitMultiANewArrayInsn(java.lang.String desc,
int dims) |
net.sf.cglib.asm.AnnotationVisitor |
visitParameterAnnotation(int parameter,
java.lang.String desc,
boolean visible) |
void |
visitTableSwitchInsn(int min,
int max,
net.sf.cglib.asm.Label dflt,
net.sf.cglib.asm.Label[] labels) |
void |
visitTryCatchBlock(net.sf.cglib.asm.Label start,
net.sf.cglib.asm.Label end,
net.sf.cglib.asm.Label handler,
java.lang.String type) |
void |
visitTypeInsn(int opcode,
java.lang.String type) |
void |
visitVarInsn(int opcode,
int var) |
public net.sf.cglib.asm.AnnotationVisitor visitAnnotationDefault()
visitAnnotationDefault
in interface net.sf.cglib.asm.MethodVisitor
public net.sf.cglib.asm.AnnotationVisitor visitAnnotation(java.lang.String desc, boolean visible)
visitAnnotation
in interface net.sf.cglib.asm.MethodVisitor
public net.sf.cglib.asm.AnnotationVisitor visitParameterAnnotation(int parameter, java.lang.String desc, boolean visible)
visitParameterAnnotation
in interface net.sf.cglib.asm.MethodVisitor
public void visitAttribute(net.sf.cglib.asm.Attribute attr)
visitAttribute
in interface net.sf.cglib.asm.MethodVisitor
public void visitCode()
visitCode
in interface net.sf.cglib.asm.MethodVisitor
public void visitFrame(int type, int nLocal, java.lang.Object[] local, int nStack, java.lang.Object[] stack)
visitFrame
in interface net.sf.cglib.asm.MethodVisitor
public void visitInsn(int opcode)
visitInsn
in interface net.sf.cglib.asm.MethodVisitor
public void visitIntInsn(int opcode, int operand)
visitIntInsn
in interface net.sf.cglib.asm.MethodVisitor
public void visitVarInsn(int opcode, int var)
visitVarInsn
in interface net.sf.cglib.asm.MethodVisitor
public void visitTypeInsn(int opcode, java.lang.String type)
visitTypeInsn
in interface net.sf.cglib.asm.MethodVisitor
public void visitFieldInsn(int opcode, java.lang.String owner, java.lang.String name, java.lang.String desc)
visitFieldInsn
in interface net.sf.cglib.asm.MethodVisitor
public void visitMethodInsn(int opcode, java.lang.String owner, java.lang.String name, java.lang.String desc)
visitMethodInsn
in interface net.sf.cglib.asm.MethodVisitor
public void visitJumpInsn(int opcode, net.sf.cglib.asm.Label label)
visitJumpInsn
in interface net.sf.cglib.asm.MethodVisitor
public void visitLabel(net.sf.cglib.asm.Label label)
visitLabel
in interface net.sf.cglib.asm.MethodVisitor
public void visitLdcInsn(java.lang.Object cst)
visitLdcInsn
in interface net.sf.cglib.asm.MethodVisitor
public void visitIincInsn(int var, int increment)
visitIincInsn
in interface net.sf.cglib.asm.MethodVisitor
public void visitTableSwitchInsn(int min, int max, net.sf.cglib.asm.Label dflt, net.sf.cglib.asm.Label[] labels)
visitTableSwitchInsn
in interface net.sf.cglib.asm.MethodVisitor
public void visitLookupSwitchInsn(net.sf.cglib.asm.Label dflt, int[] keys, net.sf.cglib.asm.Label[] labels)
visitLookupSwitchInsn
in interface net.sf.cglib.asm.MethodVisitor
public void visitMultiANewArrayInsn(java.lang.String desc, int dims)
visitMultiANewArrayInsn
in interface net.sf.cglib.asm.MethodVisitor
public void visitTryCatchBlock(net.sf.cglib.asm.Label start, net.sf.cglib.asm.Label end, net.sf.cglib.asm.Label handler, java.lang.String type)
visitTryCatchBlock
in interface net.sf.cglib.asm.MethodVisitor
public void visitLocalVariable(java.lang.String name, java.lang.String desc, java.lang.String signature, net.sf.cglib.asm.Label start, net.sf.cglib.asm.Label end, int index)
visitLocalVariable
in interface net.sf.cglib.asm.MethodVisitor
public void visitLineNumber(int line, net.sf.cglib.asm.Label start)
visitLineNumber
in interface net.sf.cglib.asm.MethodVisitor
public void visitMaxs(int maxStack, int maxLocals)
visitMaxs
in interface net.sf.cglib.asm.MethodVisitor
public void visitEnd()
visitEnd
in interface net.sf.cglib.asm.MethodVisitor