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 net.enilink.composition.cache.behaviours.CacheBehaviourMethodProcessor.java

@DependsOn(BehaviourMethodProcessor.class)
public class CacheBehaviourMethodProcessor implements BehaviourMethodProcessor, Opcodes, Types {

    @Override
    public boolean appliesTo(BehaviourClassNode classNode, ExtendedMethod method) {
        return AsmUtils.findAnnotation(Cacheable.class, method.getOverriddenMethod()) != null

From source file net.orfjackal.retrolambda.defaultmethods.ClassModifier.java

/**
 * Created by arneball on 2014-08-12.
 */
public class ClassModifier extends ClassVisitor implements Opcodes {
    private final int bytecodeVersion;
    private String[] interfaces;

From source file net.orfjackal.retrolambda.defaultmethods.InterfaceModifier.java

/**
 * Created by arneball on 2014-08-12.
 */
public class InterfaceModifier extends ClassVisitor implements Opcodes {
    private final int targetByteCode;
    private String className;

From source file net.orfjackal.retrolambda.defaultmethods.InterfaceToHelperRewriter.java

/**
 * Created by arneball on 2014-08-24.
 */
class InterfaceToHelperRewriter extends MethodVisitor implements Opcodes {
    public InterfaceToHelperRewriter(MethodVisitor mv) {
        super(ASM5, mv);

From source file net.sf.cglib.core.Constants.java

/**
 * @author Juozas Baliuka <a href="mailto:baliuka@mwm.lt">baliuka@mwm.lt</a>
 * @version $Id: Constants.java,v 1.21 2006/03/05 02:43:19 herbyderby Exp $
 */
public interface Constants extends org.objectweb.asm.Opcodes {
    public static final Class[] EMPTY_CLASS_ARRAY = {};

From source file net.sf.sveditor.core.db.persistence.JITPersistenceDelegateFactory.java

@SuppressWarnings({ "rawtypes", "unchecked" })
public class JITPersistenceDelegateFactory implements Opcodes {
    private static JITPersistenceDelegateFactory fInstance;
    private Class<JITPersistenceDelegateBase> fDelegateCls;
    private String fTargetPkg;
    private List<String> fTargetPkgList;

From source file net.sourceforge.cobertura.instrument.FirstPassMethodInstrumenter.java

public class FirstPassMethodInstrumenter extends MethodAdapter implements Opcodes {

    private final String ownerClass;

    private String myName;

From source file net.sourceforge.cobertura.instrument.NewLocalVariableMethodAdapter.java

/**
 * Expects that the visitMaxs is calculated for me .... 
 */
public class NewLocalVariableMethodAdapter extends MethodAdapter implements Opcodes {
    protected int firstStackVariable;
    protected int addedStackWords;

From source file net.sourceforge.cobertura.instrument.pass3.TestUnitCodeProvider.java

/**
 * 
 * For every single line of code we add the following:
 * 
 * Before instrumentation:
 * 1: public int foo() {

From source file net.sourceforge.cobertura.instrument.SecondPassMethodInstrumenter.java

public class SecondPassMethodInstrumenter extends NewLocalVariableMethodAdapter implements Opcodes {
    private String TOUCH_COLLECTOR_CLASS = "net/sourceforge/cobertura/coveragedata/TouchCollector";

    private int currentLine;

    private int currentJump;