List of usage examples for org.objectweb.asm Opcodes interface-usage
From source file org.whole.examples.lang.imp.visitors.ImpBytecodeGeneratorVisitor.java
/** * @author Riccardo Solmi */ public class ImpBytecodeGeneratorVisitor extends ImpTraverseAllVisitor implements Opcodes { protected String name; protected int resultType = TYPE_V;
From source file org.whole.lang.bytecode.util.BytecodeStoreProducerBuilder.java
/** * @author Riccardo Solmi */ public class BytecodeStoreProducerBuilder implements IBuilder, Opcodes { // private List<ClassWriter> cwList = new ArrayList<ClassWriter>(); private ClassWriter cw;
From source file org.wildfly.swarm.jaxrs.internal.ApplicationFactory.java
/** * @author Bob McWhirter */ public class ApplicationFactory implements Opcodes { public static byte[] create(String name, String context) {
From source file org.wildfly.swarm.jaxrs.internal.ApplicationFactory2.java
/** * @author Bob McWhirter */ public class ApplicationFactory2 implements Opcodes { static byte[] create(String name, String path) throws IOException {
From source file org.wildfly.swarm.jaxrs.internal.FaviconExceptionMapperFactory.java
/** * @author Bob McWhirter */ public class FaviconExceptionMapperFactory implements Opcodes { static byte[] create() throws IOException {
From source file org.wildfly.swarm.jaxrs.runtime.DefaultApplicationFactory.java
/** * @author Bob McWhirter */ public class DefaultApplicationFactory implements Opcodes { protected DefaultApplicationFactory() {
From source file org.wrml.runtime.schema.generator.SchemaGenerator.java
/** * <p> * Implements the transformation of Schema to Java Class (.class bytecode). * </p> */ public class SchemaGenerator implements Opcodes {
From source file org.zoeey.ztpl.plugins.ZTPC_If.java
/** * ZTP = Zoeey Template Plugin - compile * @author MoXie(SysTem128@GMail.Com) */ public class ZTPC_If implements CompileAble, Opcodes {
From source file org.zoeey.ztpl.plugins.ZTPC_Include.java
/** * * @author MoXie(SysTem128@GMail.Com) */ public class ZTPC_Include implements CompileAble, Opcodes {
From source file pku.sei.checkedcoverage.slicing.DirectSlicer.java
/**
* This is the first dynamic slicer I wrote. Now i am using the more general
* dependences extractor, which is a bit less performant, but this way I only
* have to maintain this one class.
*
* So this DirectSlicer is only there for comparison to the new version.