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.toolazydogs.maiden.agent.asm.WaitNotifyMethodVisitor.java

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

From source file com.toolazydogs.maiden.agent.IronTransformer.java

/**
 * The root class transformer for the iron maiden agent.  This class is a
 * simple wrapper to a dispatcher.
 */
public final class IronTransformer implements ClassFileTransformer, Opcodes {
    private final static String CLASS_NAME = IronTransformer.class.getName();

From source file de.codesourcery.asm.rewrite.ProfilingRewriter.java

/**
 * Class transformer that adds bytecode instruction accounting to classes.    
 * 
 * <p>This class uses the {@link ControlFlowAnalyzer} to create a control-flow graph
 * for each method/constructor and at the start of <b>each</b> control block, inserts the following
 * generated byte-code.</p>

From source file de.enough.polish.postcompile.java5.CloneMethodVisitor.java

public class CloneMethodVisitor extends GeneratorAdapter implements Opcodes {
    private static final Type TYPE_SYSTEM = Type.getType("Ljava/lang/System;");

    private static final Method METHOD_ARRAYCOPY = Method
            .getMethod("void arraycopy(java.lang.Object, int, java.lang.Object, int, int)");

From source file de.enough.polish.postcompile.java5.EnumCollectorMethodVisitor.java

public class EnumCollectorMethodVisitor extends MethodAdapter implements Opcodes {
    private Type owner;
    private Method method;
    private EnumManager manager;

    public EnumCollectorMethodVisitor(MethodVisitor mv, Type owner, Method method) {

From source file de.enough.polish.postcompile.java5.EnumMethodVisitor.java

/**
 * @author mkoch
 *
 */
public class EnumMethodVisitor extends GeneratorAdapter implements Opcodes {
    private Type owner;

From source file de.enough.polish.postcompile.java5.Java5ClassVisitor.java

public class Java5ClassVisitor extends ClassAdapter implements Opcodes {
    private static final String METHOD_VALUES = "values";

    private boolean isEnumClass;
    private String className;
    private String classDesc;

From source file de.jiac.micro.config.analysis.BasicGuesser.java

/**
 * @author Marcel Patzlaff
 * @version $Revision:$
 */
public class BasicGuesser implements Interpreter, Opcodes {
    public Value newValue(Type type) {

From source file de.jiac.micro.config.analysis.ComponentAnalyser.java

/**
 * @author Marcel Patzlaff
 * @version $Revision:$
 */
class ComponentAnalyser implements ClassVisitor, FieldVisitor, Opcodes {
    protected final static HashSet<String> HANDLE_SOURCES;

From source file de.scoopgmbh.copper.instrument.BuildStackInfoAdapter.java

public class BuildStackInfoAdapter extends MethodVisitor implements Opcodes, ByteCodeStackInfo {

    static final Logger logger = LoggerFactory.getLogger(BuildStackInfoAdapter.class);

    static final Type retAddressType = Type.getObjectType("ReturnAddress");