Java org.springframework.asm MethodVisitor fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.asm MethodVisitor fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.asm MethodVisitor.

The text is from its open source code.

Method

voidvisitCode()
Starts the visit of the method's code, if any (i.e.
voidvisitEnd()
Visits the end of the method.
voidvisitInsn(final int opcode)
Visits a zero operand instruction.
voidvisitMaxs(final int maxStack, final int maxLocals)
Visits the maximum stack size and the maximum number of local variables of the method.
voidvisitMethodInsn(final int opcode, final String owner, final String name, final String descriptor, final boolean isInterface)
Visits a method instruction.
voidvisitVarInsn(final int opcode, final int var)
Visits a local variable instruction.