Example usage for org.objectweb.asm Opcodes interface-usage

List of usage examples for org.objectweb.asm Opcodes interface-usage

Introduction

In this page you can find the example usage for org.objectweb.asm Opcodes interface-usage.

Usage

From source file org.kantega.dogmaticmvc.instrumentation.InstrumentingMethodVisitor.java

/**
 */
public class InstrumentingMethodVisitor extends MethodAdapter implements Opcodes {
    private final int classRef;
    private final int methodRef;

From source file org.kantega.revoc.demo.HelloWorldGenerator.java

/**
 *
 */
public class HelloWorldGenerator implements Opcodes {

    public static void main(String[] args) throws ClassNotFoundException, NoSuchMethodException,

From source file org.kantega.revoc.demo.SimpleConverageVisitor.java

/**
 *
 */
public class SimpleConverageVisitor extends MethodVisitor implements Opcodes {
    private int currentLineNumber;
    private final int classId;

From source file org.kantega.revoc.instrumentation.CoverageClassVisitor.java

/**
 *
 */
public class CoverageClassVisitor extends ClassVisitor implements Opcodes {

    /** Representing this class with an integer which can be used as an array index **/

From source file org.kordamp.naum.model.Opcodes.java

/**
 * @author Andres Almiray
 */
public interface Opcodes extends org.objectweb.asm.Opcodes {
    int ACC_DEFAULT = 0x40000; // default method on interface
}

From source file org.mbte.groovypp.compiler.asm.AsmInstr.java

public abstract class AsmInstr implements Opcodes {
    public abstract void visit(MethodVisitor mv);

}

From source file org.mbte.groovypp.compiler.asm.LdcImproverMethodAdapter.java

public class LdcImproverMethodAdapter extends I2LL2IRemoverMethodAdapter implements Opcodes {
    public LdcImproverMethodAdapter(MethodVisitor methodVisitor) {
        super(methodVisitor);
    }

    public void visitLdcInsn(Object cst) {

From source file org.mbte.groovypp.compiler.asm.UneededBoxingRemoverMethodAdapter.java

public class UneededBoxingRemoverMethodAdapter extends LdcImproverMethodAdapter implements Opcodes {
    private String boxingDesc = null;
    private static final String DTT = BytecodeHelper
            .getClassInternalName(DefaultTypeTransformation.class.getName());
    private static final String DGPP = BytecodeHelper.getClassInternalName(DefaultGroovyPPMethods.class.getName());

From source file org.mbte.groovypp.compiler.asm.UnneededBoxingRemoverMethodAdapter.java

public class UnneededBoxingRemoverMethodAdapter extends LdcImproverMethodAdapter implements Opcodes {
    private String boxingDesc = null;
    private static final String DTT = BytecodeHelper
            .getClassInternalName(DefaultTypeTransformation.class.getName());
    private static final String DGPP = BytecodeHelper.getClassInternalName(DefaultGroovyPPMethods.class.getName());

From source file org.mbte.groovypp.compiler.bytecode.BytecodeExpr.java

public abstract class BytecodeExpr extends BytecodeExpression implements Opcodes {
    public final void visit(MethodVisitor mv) {
        compile(mv);
    }

    public BytecodeExpr(ASTNode parent, ClassNode type) {