Package net.sourceforge.processdash.tool.diff

Examples of net.sourceforge.processdash.tool.diff.LOCDiff


    protected void compareFiles() throws IOException {
        parseMultipartFormData();

        // Compare the two files in question.
        List filters = TemplateFilterLocator.getFilters();
        LOCDiff diff = new LOCDiff(filters,
                                   getFileContents('A'),
                                   getFileContents('B'),
                                   getParameter("FILEB"),
                                   getParameter("options"));

        printHeader(diff);
        printMetrics(diff);
        out.println("<hr>");
        diff.displayHTMLRedlines(out);
        out.println("</body></html>");

        diff.dispose();
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.processdash.tool.diff.LOCDiff

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.