Package org.objectweb.asm

Examples of org.objectweb.asm.EmptyClassVisitor


        ZipEntry e = (ZipEntry)entries.nextElement();
        String s = e.getName();
        if (s.endsWith(".class")) {
          s = s.substring(0, s.length() - 6).replace('/', '.');
          InputStream is = zip.getInputStream(e);
          new ClassReader(is).accept(new EmptyClassVisitor(), false);
        }
      }
      t = System.currentTimeMillis() - t;
      System.out.println("Time to deserialize " + n + " classes = " + t + " ms");
    }
View Full Code Here

TOP

Related Classes of org.objectweb.asm.EmptyClassVisitor

Copyright © 2018 www.massapicom. 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.