Package com.cfinkel.reports.util

Examples of com.cfinkel.reports.util.RunnerForFile


        return reports;
    }

    static void loadAllClassFiles(File dir, final String baseDir) throws RunnerException {

        RunnerForFile runnerForFile = new RunnerForFile() {
            public void run(File file) throws RunnerException {
                try {
                    // convert to string:
                    String classString = file.toURI().toURL().toString();
                    // remove .class:
View Full Code Here


    private static List<String> getReportPaths(File dir) throws RunnerException {

        final List<String> reportPaths = new ArrayList<String>();

        RunnerForFile runnerForFile = new RunnerForFile() {
            public void run(File file) throws RunnerException {

                try {
                    // convert to string:
                    String xmlString = file.toURI().toURL().toString();
View Full Code Here

TOP

Related Classes of com.cfinkel.reports.util.RunnerForFile

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.