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.android.tools.profiler.NetworkingAdapter.java

/**
 * Wraps all creations of HTTPUrlConnection's with our own version.
 */
final class NetworkingAdapter extends ClassVisitor implements Opcodes {

    static final String URL_CLASS = "java/net/URL";

From source file com.centimia.orm.jaqu.ext.asm.JaquClassAdapter.java

/**
 * asm adapter which adds post compile data to the classes annotated with {@link Entity}
 * 
 * @author Shai Bentin
 *
 */

From source file com.dragome.callbackevictor.serverside.bytecode.transformation.asm.ContinuationMethodAdapter.java

public final class ContinuationMethodAdapter extends MethodVisitor implements Opcodes {

    private static final String STACK_RECORDER = Type.getInternalName(StackRecorder.class);
    private static final String POP_METHOD = "pop";
    private static final String PUSH_METHOD = "push";

From source file com.dragome.callbackevictor.serverside.bytecode.transformation.asm.ContinuationMethodAnalyzer.java

public class ContinuationMethodAnalyzer extends MethodNode implements Opcodes {

    public class MyVerifier extends SimpleVerifier {
        MyVerifier() {
            if (_useLoader != null) {
                setClassLoader(_useLoader);

From source file com.friz.instruction.tree.AbstractInstruction.java

/**
 * @author Kyle Friz
 * @since  Feb 29, 2016
 */
public class AbstractInstruction<I extends AbstractInsnNode> implements Opcodes {

From source file com.geeksaga.light.profiler.TransactionEntryPoint.java

class TransactionEntryPointClassVistor extends ClassVisitor implements Opcodes {

    public TransactionEntryPointClassVistor(ClassVisitor classVisitor) {
        super(ASM5, classVisitor);
    }

From source file com.github.antag99.retinazer.weaver.AccessProcessor.java

final class AccessProcessor extends ChainVisitor implements Opcodes {
    private Weaver weaver;

    public AccessProcessor(Weaver weaver) {
        super(ASM5);

From source file com.github.antag99.retinazer.weaver.ComponentMetadata.java

final class ComponentMetadata extends ClassVisitor implements Opcodes {

    /**
     * Internal name of this component type.
     */
    public String internalName;

From source file com.github.antag99.retinazer.weaver.ComponentProcessor.java

final class ComponentProcessor extends ChainVisitor implements Opcodes {
    private ComponentMetadata metadata;

    public ComponentProcessor(ComponentMetadata metadata) {
        super(ASM5);

From source file com.github.antag99.retinazer.weaver.MapperGenerator.java

final class MapperGenerator implements ChainSource, Opcodes {
    private ComponentMetadata metadata;

    public MapperGenerator(ComponentMetadata metadata) {
        this.metadata = metadata;
    }