Example usage for org.objectweb.asm MethodVisitor subclass-usage

List of usage examples for org.objectweb.asm MethodVisitor subclass-usage

Introduction

In this page you can find the example usage for org.objectweb.asm MethodVisitor subclass-usage.

Usage

From source file st.redline.compiler.TracingMethodVisitor.java

public class TracingMethodVisitor extends MethodVisitor implements Opcodes {

    private final MethodVisitor methodVisitor;

    public TracingMethodVisitor(MethodVisitor methodVisitor) {
        super(ASM4);

From source file tk.wurst_client.hooks.injector.MethodHookInjector.java

public class MethodHookInjector extends MethodVisitor {
    private String methodName;
    private String className;
    private MethodData methodData;
    private int paramCount;

From source file uk.ac.cam.cl.dtg.teaching.programmingtest.java.bytecode.InstructionCounterMethodAdapter.java

public class InstructionCounterMethodAdapter extends MethodVisitor {

    private static final String INSTRUCTION_COUNTER_CLASSNAME = "uk/ac/cam/cl/dtg/teaching/programmingtest/java/bytecode/InstructionCounter";

    // http://docs.oracle.com/javase/specs/jvms/se7/html/jvms-6.html
    private static final int INCREMENT_INSTRUCTION = 0;

From source file uniol.apt.tasks.modules.ModuleParameterVerifyMethodVisitor.java

/** @author vsp */
public class ModuleParameterVerifyMethodVisitor extends MethodVisitor {
    /**
     * Marker class, references to the Type of this class get used to mark that a parameter occurs with different
     * Types
     */