Package org.impalaframework.file

Examples of org.impalaframework.file.FileRecurser


        CommandPropertyValue classHolder = properties.get("class");

        String searchText = classHolder.getValue();

        ClassFindFileRecurseHandler handler = new ClassFindFileRecurseHandler(searchText);
        FileRecurser recurser = new FileRecurser();

        for (File directory : classDirectories) {
            getDirectoryFilter().setRootPath(directory);
            handler.setRootPath(directory.getAbsolutePath());
            recurser.recurse(handler, directory);
        }

        foundClasses = handler.foundFiles;
        return true;
    }
View Full Code Here

TOP

Related Classes of org.impalaframework.file.FileRecurser

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.