Package org.jamesii.resultreport.renderer.rtex

Examples of org.jamesii.resultreport.renderer.rtex.RTexResultReportRenderer


   * Configures default renderer for experiment reports.
   *
   * @return the result report renderer
   */
  protected IResultReportRenderer configureRenderer() {
    RTexResultReportRenderer renderer = new RTexResultReportRenderer();
    if (!templateDirectory.isEmpty()) {
      renderer.setTemplateDirectory(templateDirectory);
    }
    return renderer;
  }
View Full Code Here


    reportMinThetas(testSection, ilsObserver);
    reportUpdatedMinimumThetas(testSection, ilsObserver);
    reportInterestingThetas(testSection, ilsObserver);
    reportThetas(testSection, ilsObserver);

    ResultReportRenderer tutorialRenderer = new RTexResultReportRenderer();
    ResultReportGenerator tutorialGenerator = new ResultReportGenerator();
    try {
      File rep = new File("./ParamILSResults/reports");
      rep.mkdirs();
      tutorialGenerator.generateReport(paramILSReport, tutorialRenderer, rep);
View Full Code Here

TOP

Related Classes of org.jamesii.resultreport.renderer.rtex.RTexResultReportRenderer

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.