Package com.google.singletondetector.visitors

Examples of com.google.singletondetector.visitors.SingletonClassVisitor


    // First pass: determine the type of each class (i.e. Singleton), count the
    //             number of read classes and remove enums
    Iterator<ClassReader> iter = crlist.iterator();
    for (ClassReader cr : crlist) {
      cr.accept(new SingletonClassVisitor(this), ClassReader.SKIP_DEBUG);
      stats.incClassesRead();
    }

    // Second pass: determine which special classes each class uses
    for (ClassReader cr : crlist) {
View Full Code Here

TOP

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

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.