List of usage examples for org.objectweb.asm Opcodes interface-usage
From source file org.springsource.loaded.Utils.java
/**
* Utility functions for use throughout SpringLoaded
*
* @author Andy Clement
* @since 0.5.0
*/
From source file org.summer.aop.ltw.AspectWeaver.java
/** * @author Sandro Sebastian Koll */ public final class AspectWeaver extends ClassVisitor implements Opcodes { public AspectWeaver(ClassVisitor cv) { super(ASM4, cv);
From source file org.summer.aop.ltw.AuxiliaryWeaver.java
/** * @author Sandro Sebastian Koll */ class AuxiliaryWeaver extends MethodVisitor implements Opcodes { AuxiliaryWeaver(String className, MethodVisitor mv, int access, String methodName, int constructorNumber, String methodDesc, String methodSignature, String[] exceptions, List<Aspect> matchingAspects) {
From source file org.summer.aop.ltw.ConstructorSplitter.java
/** * @author Sandro Sebastian Koll */ public class ConstructorSplitter extends MethodVisitor implements Opcodes { public ConstructorSplitter(final String className, ClassVisitor cv, int access, int constructorNumber, String methodDesc, String methodSignature, String[] exceptions, List<Aspect> matchingAspects) {
From source file org.summer.aop.ltw.Frame.java
/** * @author Sandro Sebastian Koll */ public final class Frame implements Opcodes { Frame(Type[] argTypes) { for (Type type : argTypes) {
From source file org.tbot.core.bot.loader.asm.modifiers.adapters.tree.AddInterfaceAdapter.java
/**
* This file is part of tBot.
*
* tBot is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
From source file org.tbot.core.bot.loader.asm.modifiers.adapters.tree.AddMethodAdapter.java
/**
* This file is part of tBot.
*
* tBot is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
From source file org.tbot.core.bot.loader.asm.modifiers.adapters.tree.generic.AbstractClassTransform.java
/**
* This file is part of tBot.
*
* tBot is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
From source file org.unseen.proxy.impl.ProxyClassBuilder.java
/** * @author Todor Boev * @version $Revision$ */ public class ProxyClassBuilder implements Opcodes { private static final String PROXY_IFACE;
From source file org.whole.examples.lang.imp.visitors.BytecodeGeneratorOperation.java
/** * @author Riccardo Solmi */ public class BytecodeGeneratorOperation extends AbstractOperation implements Opcodes { public static final String ID = "toASMBytecode";