Package com.google.singletondetector.visitors

Examples of com.google.singletondetector.visitors.SingletonUsageClassVisitor


      stats.incClassesRead();
    }

    // Second pass: determine which special classes each class uses
    for (ClassReader cr : crlist) {
      cr.accept(new SingletonUsageClassVisitor(this), ClassReader.SKIP_DEBUG);
    }
   
    // Third pass: set isDrawn for each class
    for (Clazz cl : classes.values()) {
      cl.setIsDrawn(flags.getThreshold());
View Full Code Here

TOP

Related Classes of com.google.singletondetector.visitors.SingletonUsageClassVisitor

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.