Example usage for org.objectweb.asm.util ASMifier main

List of usage examples for org.objectweb.asm.util ASMifier main

Introduction

In this page you can find the example usage for org.objectweb.asm.util ASMifier main.

Prototype

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

Source Link

Document

Prints the ASM source code to generate the given class to the standard output.

Usage

From source file:co.paralleluniverse.fibers.instrument.InstrumentationTKB.java

License:Open Source License

public static void main(String[] args) throws Exception {
    ASMifier.main(new String[] { "co.paralleluniverse.fibers.instrument.InstrumentationTKB" });
}

From source file:com.fjn.helper.frameworkex.asm.test.ASMifierTest.java

License:Apache License

public static void main(String[] args) throws Exception {
    ASMifier.main(new String[] { "com.fjn.helper.frameworkex.asm.test.ClassPrinterTest" });
}

From source file:com.heliosdecompiler.appifier.SystemHookDumper.java

License:Apache License

public static void main(String[] args) throws Throwable {
    ASMifier.main(new String[] { "appifier/target/classes/com/heliosdecompiler/appifier/SystemHook.class" });
}

From source file:io.github.btpka3.asm.PrintHi.java

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

    // java -classpath "asm.jar;asm-util.jar;yourjar.jar" org.objectweb.asm.util.ASMifier org.domain.package.YourClass
    // java -classpath "asm.jar;asm-util.jar" org.objectweb.asm.util.ASMifier org/domain/package/YourClass.class
    ASMifier.main(new String[] { "io.github.btpka3.asm.Hi" });
    //            ASMifier.main(new String[]{"JP.co.esm.caddies.jomt.license.h"});

}

From source file:org.cakeframework.container.spi.DynamicContainerFactoryTest.java

License:Apache License

public void ff() throws Exception {
    ASMifier.main(new String[] { "stubs.GeneratedContainer" });
}

From source file:org.codehaus.groovy.classgen.JO.java

License:Apache License

public static void main(String[] args) throws Exception {
    ASMifier.main(new String[] { "target/classes/groovy/swing/SwingBuilder.class" });
    //        ASMifierClassVisitor.main(new String[]{"target/classes/org/codehaus/groovy/runtime/callsite/PogoMetaMethodSite.class"});
    //        ASMifierClassVisitor.main(new String[]{"target/test-classes/spectralnorm.class"});
    //        ASMifierClassVisitor.main(new String[]{"target/test-classes/groovy/bugs/CustomMetaClassTest.class"});
}