Package net.sourceforge.processdash.data.util

Examples of net.sourceforge.processdash.data.util.ResultSet


            throws IOException {
        if (isExportingToExcel())
            return;

        int numRows = timeInPhase.size() - 1;
        ResultSet plan = new ResultSet(numRows, 1);
        ResultSet actual = new ResultSet(numRows, 1);
        int row = 0;
        for (Entry<String, DataPair> e : timeInPhase.entrySet()) {
            if (++row > numRows)
                break;
            plan.setRowName(row, e.getKey());
            plan.setData(row, 1, new DoubleData(e.getValue().plan));
            actual.setRowName(row, e.getKey());
            actual.setData(row, 1, new DoubleData(e.getValue().actual));
        }
        out.print("<p>\n");
        writeChart("Plan", "Estimated_Time", plan);
        out.print("&nbsp;");
        writeChart("Actual", "Time", actual);
View Full Code Here

TOP

Related Classes of net.sourceforge.processdash.data.util.ResultSet

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.