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.github.antag99.retinazer.weaver.SystemMetadata.java

final class SystemMetadata extends ClassVisitor implements Opcodes {
    public String internalName;

    public String superName;

    public List<SystemMapper> mappers = new ArrayList<>();

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

final class SystemProcessor extends ChainVisitor implements Opcodes {
    private SystemMetadata metadata;

    private static class FlyweightField {
        public FieldNode fieldNode;
        public SystemMapper mapper;

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

final class WeaverMetadata implements Opcodes {
    /** The weaver instance */
    public Weaver weaver;
    /** Internal name of the class */
    public String internalName;
    /** Name of the super class; may be null if unknown. */

From source file com.github.bmsantos.core.cola.injector.ColaInjectableMethodVisitor.java

public class ColaInjectableMethodVisitor extends MethodVisitor implements Opcodes {

    public static final String PROCESSOR = "com/github/bmsantos/core/cola/story/processor/StoryProcessor";
    public static final String PROCESSOR_METHOD = "initColaInjector";
    public static final String PROCESSOR_SIG_TYPE = "(Ljava/lang/Object;)Lcom/google/inject/Injector;";

From source file com.github.fge.grappa.transform.CodeBlock.java

public final class CodeBlock implements Opcodes {
    private final InsnList instructionList = new InsnList();
    private final List<TryCatchBlockNode> tryCatchBlockList = new ArrayList<>();
    private final List<LocalVariableNode> localVariableList = new ArrayList<>();
    private final List<VisibleAnnotation> annotations = new ArrayList<>();
    private int arity = 0;

From source file com.github.nullstress.asm.ASMDependencyAnalyzer.java

public class ASMDependencyAnalyzer extends ClassVisitor implements Opcodes {

    private Set<String> classes;

    ASMDependencyAnalyzer() {
        super(ASM4);

From source file com.github.wolf480pl.mias4j.MakeTestBuryUninitialized.java

public class MakeTestBuryUninitialized implements Opcodes {

    public static byte[] dump() throws Exception {

        ClassWriter cw = new ClassWriter(0);
        FieldVisitor fv;

From source file com.github.wolf480pl.mias4j.MakeTestDynamic.java

public class MakeTestDynamic implements Opcodes {

    public static byte[] dump() throws Exception {

        ClassWriter cw = new ClassWriter(0);
        FieldVisitor fv;

From source file com.github.wolf480pl.mias4j.MakeTestMH.java

public class MakeTestMH implements Opcodes {

    public static byte[] dump() throws Exception {

        ClassWriter cw = new ClassWriter(ClassWriter.COMPUTE_FRAMES | ClassWriter.COMPUTE_MAXS);
        MethodVisitor mv;

From source file com.gmail.socraticphoenix.nebula.event.wrappers.BytecodeEventListenerGeneration.java

public class BytecodeEventListenerGeneration implements Opcodes {
    private static Map<Class, List<Class>> listenerCache;

    private static long index = 0;

    private static Type classType;