Examples of JasperViewer


Examples of net.sf.jasperreports.view.JasperViewer

     *
     * @return jasperViewer in PREVIEW mode
     * @return null in PRINT mode
     */
    public static JasperViewer printJasper(JasperPrint jp, int printOrPreview, boolean withPrintDialog) throws JRException {
        JasperViewer jv = null;
        if(printOrPreview == PREVIEW){
          jv = new JasperViewer(jp, false);
            jv.setVisible(true);
        }
        if(printOrPreview == PRINT){
            JasperPrintManager.printReport(jp, withPrintDialog);
        }
        return jv;
View Full Code Here

Examples of net.sf.jasperreports.view.JasperViewer

     *
     * @return jasperViewer in PREVIEW mode
     * @return null in PRINT mode
     */
    public static JasperViewer printJasper(JasperPrint jp, int printOrPreview, boolean withPrintDialog, String title) throws JRException {
        JasperViewer jv = null;
        if(printOrPreview == PREVIEW){
          jv = new JasperViewer(jp, false);
            jv.setVisible(true);
            jv.setTitle(title);
        }
        if(printOrPreview == PRINT){
            JasperPrintManager.printReport(jp, withPrintDialog);
        }
        return jv;
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.