Examples of generateHTMLReport()


Examples of eu.scape_project.planning.utils.CharacterisationReportGenerator.generateHTMLReport()

     * @param sampleObj
     *            Sample object to select.
     */
    public void generateCharacterisationReport(final SampleObject sampleObj) {
        CharacterisationReportGenerator reportGen = new CharacterisationReportGenerator();
        this.sampleCharacterisationReportAsHTML = reportGen.generateHTMLReport(sampleObj);
    }

    /**
     * checks if the sample contains evaluation values. If yes, the user should
     * be asked for confirmation before removing it. If not, the sample is
View Full Code Here

Examples of eu.scape_project.planning.utils.CharacterisationReportGenerator.generateHTMLReport()

     *            alternative to use
     */
    public void generateCharacterisationReports(SampleObject sample, Alternative alternative) {
        CharacterisationReportGenerator reportGen = new CharacterisationReportGenerator();

        sampleCharacterisationReportAsHTML = reportGen.generateHTMLReport(sample);

        DigitalObject resultObject = alternative.getExperiment().getResults().get(sample);
        resultCharacterisationReportAsHTML = reportGen.generateHTMLReport(resultObject);
    }

View Full Code Here

Examples of eu.scape_project.planning.utils.CharacterisationReportGenerator.generateHTMLReport()

        CharacterisationReportGenerator reportGen = new CharacterisationReportGenerator();

        sampleCharacterisationReportAsHTML = reportGen.generateHTMLReport(sample);

        DigitalObject resultObject = alternative.getExperiment().getResults().get(sample);
        resultCharacterisationReportAsHTML = reportGen.generateHTMLReport(resultObject);
    }

    @Override
    protected AbstractWorkflowStep getWfStep() {
        return evaluateExperiments;
View Full Code Here

Examples of org.wso2.carbon.reporting.util.types.HtmlReport.generateHtmlReport()

                    ExcelReport excelReport = new ExcelReport();
                    outputStream = excelReport.generateExcelReport(jasperPrint);
                } else if (reportType.equals("html")) {
                    // used HtmlReport to generate HTML report
                    HtmlReport htmlReport = new HtmlReport();
                    outputStream = htmlReport.generateHtmlReport(jasperPrint);
                } else {
                    throw new ReportingException("requested report type " + reportType + " invalid");
                }
            } finally {
                if (outputStream != null) {
View Full Code Here

Examples of org.wso2.carbon.reporting.util.types.HtmlReport.generateHtmlReport()

                    ExcelReport excelReport = new ExcelReport();
                    outputStream = excelReport.generateExcelReport(jasperPrint);
                } else if (reportType.equals("html")) {
                    // used HtmlReport to generate HTML report
                    HtmlReport htmlReport = new HtmlReport();
                    outputStream = htmlReport.generateHtmlReport(jasperPrint);
                } else {
                    throw new ReportingException("requested report type " + reportType + " invalid");
                }
            } finally {
                if (outputStream != null) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.