Examples of ExportPdfThread


Examples of org.bioinfo.ngs.qc.qualimap.gui.threads.ExportPdfThread

                logger.warn("The output file path is set. The outdir will be used to save raw data or ignored.");
            }
        }

        Thread exportReportThread = outputType.equals( Constants.REPORT_TYPE_PDF ) ?
               new ExportPdfThread(resultManager, reportFileName  ) :
               new ExportHtmlThread(resultManager, outdir);

         exportReportThread.run();
    }
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.gui.threads.ExportPdfThread

     * @param path Output PDF path
     */
  private void exportToPdf(String path){
    TabPageController tabController = homeFrame.getSelectedTabPageController();

    ExportPdfThread t =
      new ExportPdfThread(this, tabController, path);

    t.start();
  }
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.