Example usage for org.objectweb.asm Opcodes ASM4

List of usage examples for org.objectweb.asm Opcodes ASM4

Introduction

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

Prototype

int ASM4

To view the source code for org.objectweb.asm Opcodes ASM4.

Click Source Link

Usage

From source file:net.stickycode.bootstrap.guice4.AnnotationCollector.java

License:Apache License

public AnnotationCollector() {
    super(Opcodes.ASM4);
    _features = new LinkedList<ScannerFeature>();
    _annotations = new HashMap<String, Annotation>();
}

From source file:no.kantega.linecount.LineCountClassVisitor.java

License:Apache License

public LineCountClassVisitor(ClassVisitor cv) {
    super(Opcodes.ASM4, cv);
}

From source file:no.kantega.uppercase.UppercaseClassVisitor.java

License:Apache License

public UppercaseClassVisitor(ClassVisitor cv) {
    super(Opcodes.ASM4, cv);
}

From source file:org.anon.smart.base.stt.asm.MethodEncloser.java

License:Open Source License

public MethodEncloser(ASMMethodContext ctx) {
    super(Opcodes.ASM4, ctx.visitor(), ctx.access(), ctx.name(), ctx.description());
    _context = ctx;
}

From source file:org.anon.smart.base.stt.asm.StandardVisitor.java

License:Open Source License

public StandardVisitor(ClassVisitor cv, STTVisitor visit) {
    super(Opcodes.ASM4, cv);
    _visitor = visit;
    _descriptor = visit.descriptor();
}

From source file:org.apache.commons.javaflow.bytecode.transformation.asm.ContinuationClassAdapter.java

License:Apache License

public ContinuationClassAdapter(ClassVisitor cv) {
    super(Opcodes.ASM4, cv);
}

From source file:org.apache.commons.javaflow.bytecode.transformation.asm.ContinuationMethodAdapter.java

License:Apache License

public ContinuationMethodAdapter(ContinuationMethodAnalyzer a) {
    super(Opcodes.ASM4, a.mv);
    this.canalyzer = a;
    this.analyzer = a.analyzer;
    this.labels = a.labels;
    this.nodes = a.nodes;
    this.stackRecorderVar = a.stackRecorderVar;
    this.isStatic = (a.access & ACC_STATIC) > 0;
    this.methodDesc = a.desc;
}

From source file:org.apache.commons.javaflow.bytecode.transformation.asm.ContinuationMethodAnalyzer.java

License:Apache License

public ContinuationMethodAnalyzer(String className, ClassVisitor cv, MethodVisitor mv, int access, String name,
        String desc, String signature, String[] exceptions) {
    super(Opcodes.ASM4, access, name, desc, signature, exceptions);
    this.className = className;
    this.cv = cv;
    this.mv = mv;
}

From source file:org.apache.commons.javaflow.providers.asm4.ContinuableClassVisitor.java

License:Apache License

public ContinuableClassVisitor(final ClassVisitor cv, final ContinuableClassInfoResolver cciResolver,
        final byte[] originalBytes) {
    super(Opcodes.ASM4, cv);
    this.cciResolver = cciResolver;
    this.originalBytes = originalBytes;
}

From source file:org.apache.commons.javaflow.providers.asm4.ContinuableMethodNode.java

License:Apache License

public ContinuableMethodNode(int access, String name, String desc, String signature, String[] exceptions,
        String className, ContinuableClassInfoResolver cciResolver, MethodVisitor mv) {
    super(Opcodes.ASM4, access, name, desc, signature, exceptions);
    this.className = className;
    this.cciResolver = cciResolver;
    this.mv = mv;
}