Package io.hawt.util.introspect.support

Examples of io.hawt.util.introspect.support.ClassScanner


* Dumps all the classes on the classpath using hte ClassScanner
*/
public class Main {

    public static void main(String[] args) {
        ClassScanner scanner = ClassScanner.newInstance();
        SortedMap<String, Class<?>> answer = scanner.getAllClassesMap();

        for (Class<?> aClass : answer.values()) {
            System.out.println(aClass.getName());
        }
    }
View Full Code Here

TOP

Related Classes of io.hawt.util.introspect.support.ClassScanner

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.