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 com.taobao.asm.AsmFieldTest.java

/**
 * Created by wuzhong on 2017/4/27.
 */
public class AsmFieldTest implements Opcodes {

    @Test

From source file com.taobao.asm.AsmTest.java

/**
 * Created by wuzhong on 2017/4/27.
 */
public class AsmTest implements Opcodes {

    @Test

From source file com.toolazydogs.aunit.internal.LexerFactory.java

/**
 *
 */
public class LexerFactory<L extends Lexer> implements Opcodes {
    private final Class<L> lexerClass;
    private final LexerSetup<L> lexerSetup;

From source file com.toolazydogs.aunit.internal.ParserFactory.java

/**
 *
 */
public class ParserFactory<P extends Parser> implements Opcodes {
    private final Class<P> parserClass;
    private final ParserSetup<P> parserSetup;

From source file com.toolazydogs.aunit.internal.TreeParserFactory.java

/**
 *
 */
public class TreeParserFactory<T extends TreeParser> implements Opcodes {
    private final Class<T> treeParserClass;
    private final TreeParserSetup<T> treeParserSetup;

From source file com.toolazydogs.maiden.agent.asm.BeginEndMethodVisitor.java

/**
 * Use this class to insert code at the beginning and end of a method.
 * <p/>
 * An instance of {@link MethodVisitor} that wraps a method's code with a
 * <code>try/finally</code> pair.  It calls registered listeners, which
 * implement {@link BeginEndMethodListener}, before the try block to allow

From source file com.toolazydogs.maiden.agent.asm.IronClassVisitor.java

/**
 * An ASM class visitor.
 */
public class IronClassVisitor implements ClassVisitor, Opcodes {
    private final static String CLASS_NAME = IronClassVisitor.class.getName();
    private final static Logger LOGGER = Logger.getLogger(CLASS_NAME);

From source file com.toolazydogs.maiden.agent.asm.MonitorMethodVisitor.java

/**
 *
 */
public class MonitorMethodVisitor extends MethodAdapter implements Opcodes {
    private final static String CLASS_NAME = MonitorMethodVisitor.class.getName();
    private final static Logger LOGGER = Logger.getLogger(CLASS_NAME);

From source file com.toolazydogs.maiden.agent.asm.NativeClassVisitor.java

/**
 * An ASM class visitor.
 */
public class NativeClassVisitor implements ClassVisitor, Opcodes {
    private final static String CLASS_NAME = NativeClassVisitor.class.getName();
    private final static Logger LOGGER = Logger.getLogger(CLASS_NAME);

From source file com.toolazydogs.maiden.agent.asm.RunnableVisitor.java

/**
 *
 */
public class RunnableVisitor implements ClassVisitor, Opcodes {
    private final static String CLASS_NAME = RunnableVisitor.class.getName();
    private final static Logger LOGGER = Logger.getLogger(CLASS_NAME);