Package net.sourceforge.processdash.tool.diff.engine

Examples of net.sourceforge.processdash.tool.diff.engine.FileToAnalyzeSubtitled


        out.write("<h2>");
        out.write(filename);
        out.write("</h2>\n");

        if (diff.getFile() instanceof FileToAnalyzeSubtitled) {
            FileToAnalyzeSubtitled st = (FileToAnalyzeSubtitled) diff.getFile();
            String subtitle = st.getSubtitle();
            if (StringUtils.hasValue(subtitle)) {
                out.write("<p><i>");
                out.write(HTMLUtils.escapeEntities(subtitle));
                out.write("</i></p>\n");
            }
View Full Code Here

TOP

Related Classes of net.sourceforge.processdash.tool.diff.engine.FileToAnalyzeSubtitled

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.