List of usage examples for org.objectweb.asm Opcodes interface-usage
From source file org.picocontainer.gems.behaviors.AsmHiddenImplementation.java
/**
* This component adapter makes it possible to hide the implementation of a real subject (behind a proxy).
* The proxy will implement all the interfaces of the
* underlying subject. If you want caching,
* use a {@link Cached} around this one.
*
From source file org.picocontainer.gems.behaviors.HiddenImplementation.java
/**
* This component adapter makes it possible to hide the implementation of a real subject (behind a proxy).
* The proxy will implement all the interfaces of the
* underlying subject. If you want caching,
* use a {@link Cached} around this one.
*
From source file org.qkit.core.asm.adapters.AddCustomGetterAdapter.java
/** * @since 1.7 * @author trDna */ public class AddCustomGetterAdapter extends ClassVisitor implements Opcodes {
From source file org.qkit.core.asm.adapters.AddCustomGraphicsAdapter.java
public class AddCustomGraphicsAdapter extends ClassVisitor implements Opcodes { private ClassVisitor next; private int retInsn;
From source file org.qkit.core.asm.adapters.AddGetterAdapter.java
/** * @since 1.7 * @author trDna */ public class AddGetterAdapter extends ClassVisitor implements Opcodes {
From source file org.qkit.core.asm.adapters.AddInterfaceAdapter.java
/** * @since 1.7 * @author Queue */ public class AddInterfaceAdapter extends ClassVisitor implements Opcodes {
From source file org.qkit.core.asm.adapters.AddMethodAdapter.java
/** * @since 1.7 * @author Queue */ public class AddMethodAdapter extends ClassVisitor implements Opcodes {
From source file org.qkit.core.asm.adapters.ChangeMethodNameAdapter.java
/** * @author trDna */ public class ChangeMethodNameAdapter extends ClassVisitor implements Opcodes { private String desc;
From source file org.qkit.core.asm.adapters.ChangeSuperclassAdapter.java
/** * Changes the superclass of a class. * @author trDna */ public class ChangeSuperclassAdapter extends ClassVisitor implements Opcodes {
From source file org.rascalmpl.library.experiments.Compiler.RVM.Interpreter.BytecodeGenerator.java
public class BytecodeGenerator implements Opcodes { // constant references to types used in emitting method calls and field references private static final Type BOOLEAN_TYPE = Type.BOOLEAN_TYPE; private static final Type OBJECT_A_TYPE = Type.getType(Object[].class); private static final Type IVALUE_TYPE = Type.getType(IValue.class);