Package pspdash

Examples of pspdash.PSPDiff$WhitespaceCompareString


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

        // Compare the two files in question.
        PSPDiff diff = new PSPDiff(getTinyWebServer(),
                                   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 pspdash.PSPDiff$WhitespaceCompareString

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.