Package jdk.internal.org.objectweb.asm

Examples of jdk.internal.org.objectweb.asm.ClassReader.accept()


     * @param methodName
     * @throws Exception
     */
    private static void dump(Class type, String methodName) throws Exception {
        ClassReader reader = new ClassReader(type.getName());
        reader.accept(new Tracer(methodName, new ASMifier(), new PrintWriter(System.out)), 0);
    }

    /**
     * @version 2013/10/30 14:29:06
     */
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.