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.khubla.jvmbasic.jvmbasicc.function.BaseFunction.java

/**
 * @author tome
 */
public abstract class BaseFunction implements Function, Opcodes {
}

From source file com.lighters.asm.HelloWorld.java

/**
 * @author Eric Bruneton
 */
public class HelloWorld extends ClassLoader implements Opcodes {

    public static void main(final String args[]) throws Exception {

From source file com.mogujie.instantrun.SuperHelperVisitor.java

/**
 * A ClassWriter used for generating the $helper class.
 *
 * @author wangzhi
 */
public class SuperHelperVisitor extends ClassWriter implements Opcodes {

From source file com.peergreen.arquillian.generator.CommonClassAdapter.java

/**
 * Common stuff for ASM class adapters.
 * @author Florent Benoit
 */
public class CommonClassAdapter extends ClassVisitor implements Opcodes {

From source file com.peergreen.jartransformer.adapter.expiration.ExpirationDateClassAdapter.java

/**
 * Expiration date class adapter.
 * @author Florent Benoit
 */
public class ExpirationDateClassAdapter extends ClassVisitor implements Opcodes {

From source file com.sun.fortress.compiler.codegen.CodeGen.java

public class CodeGen extends NodeAbstractVisitor_void implements Opcodes {

    private static final boolean DEBUG_OVERLOADED_METHOD_CHAINING = ProjectProperties
            .getBoolean("fortress.debug.overloaded.methods", false);

    private static final boolean EMIT_ERASED_GENERICS = false;

From source file com.sun.fortress.compiler.nativeInterface.SignatureParser.java

public class SignatureParser implements Opcodes {
    /**
     * Tokenization of input signature into its single Java type elements.
     */
    private List<String> arguments;

From source file com.sun.fortress.interpreter.env.ClosureMaker.java

public class ClosureMaker implements Opcodes {

    public static Applicable closureForTopLevelFunction(APIName apiname, FnDecl fd)
            throws InstantiationException, IllegalAccessException, Exception {
        String pkg_dots = NamingCzar.apiNameToPackageName(apiname);
        String pkg_slashes = Useful.replace(pkg_dots, ".", "/");

From source file com.sun.fortress.runtimeSystem.InstantiatingClassloader.java

/**
 * This code steals willy-nilly from the NextGen class loader.
 *
 * @author dr2chase
 */
public class InstantiatingClassloader extends ClassLoader implements Opcodes {

From source file com.taobao.asm.AsmExample.java

public class AsmExample extends ClassLoader implements Opcodes {

    public static class Foo {
        public static void execute() {
            System.out.println("test changed method name");
        }