List of usage examples for org.objectweb.asm Opcodes interface-usage
From source file com.gmail.socraticphoenix.occurence.wrappers.BytecodeEventListenerGeneration.java
public class BytecodeEventListenerGeneration implements Opcodes { private static Map<Class, List<Class>> listenerCache; private static long index = 0; private static Type optionalType;
From source file com.google.code.jtracert.instrument.impl.asm.JTracertObjectConstructorAdapter.java
/** * Distributed under GNU GENERAL PUBLIC LICENSE Version 3 * * @author Dmitry.Bedrin@gmail.com */ public class JTracertObjectConstructorAdapter extends MethodAdapter implements Opcodes {
From source file com.google.code.jtracert.instrument.impl.asm.JTracertSystemMethodAdapter.java
/** * Distributed under GNU GENERAL PUBLIC LICENSE Version 3 * * @author Dmitry.Bedrin@gmail.com */ public class JTracertSystemMethodAdapter extends AdviceAdapter implements Opcodes {
From source file com.google.gwtorm.jdbc.AccessGen.java
/** Generates a concrete implementation of an {@link Access} extension. */ class AccessGen implements Opcodes { private static final String REL_ALIAS = "T"; private static enum DmlType { INSERT("bindOneInsert"),
From source file com.google.gwtorm.nosql.AccessGen.java
/** Generates a concrete implementation of a {@link NoSqlAccess} extension. */ class AccessGen implements Opcodes { private static final Type string = Type.getType(String.class); private static final Type protobufCodec = Type.getType(ProtobufCodec.class); private static final Type indexFunction = Type.getType(IndexFunction.class); private static final Type object = Type.getType(Object.class);
From source file com.google.gwtorm.nosql.IndexFunctionGen.java
/** Generates {@link IndexFunction} implementations. */ class IndexFunctionGen<T> implements Opcodes { private static final Type string = Type.getType(String.class); private static final Type object = Type.getType(Object.class); private static final Type indexKeyBuilder = Type.getType(IndexKeyBuilder.class);
From source file com.google.gwtorm.protobuf.CodecGen.java
/** Generates {@link ProtobufCodec} implementations. */ class CodecGen<T> implements Opcodes { private static final Type string = Type.getType(String.class); private static final Type byteStringOutput = Type.getType(ByteString.Output.class); private static final Type byteString = Type.getType(ByteString.class); private static final Type object = Type.getType(Object.class);
From source file com.google.gwtorm.server.CodeGenSupport.java
public class CodeGenSupport implements Opcodes { public final MethodVisitor mv; private ColumnModel col; private int dupOnSet; private int columnIdx; private Type entityType;
From source file com.google.gwtorm.server.SchemaConstructorGen.java
/** Generates a factory to efficiently create new Schema instances. */ public class SchemaConstructorGen<T extends Schema> implements Opcodes { private static final String CTX = "schemaArg"; private final GeneratedClassLoader classLoader; private final Class<T> schemaImpl;
From source file com.google.gwtorm.server.SchemaGen.java
/** Generates a concrete implementation of a {@link Schema} extension. */ public class SchemaGen<S extends AbstractSchema> implements Opcodes { public interface AccessGenerator { Class<?> create(GeneratedClassLoader loader, RelationModel rm) throws OrmException; }