Uses of Class
dori.jasper.engine.JasperPrint

Packages that use JasperPrint
dori.jasper.engine   
dori.jasper.engine.fill   
dori.jasper.engine.print   
dori.jasper.engine.xml   
dori.jasper.view   
dori.jasper.view.save   
 

Uses of JasperPrint in dori.jasper.engine
 

Fields in dori.jasper.engine declared as JasperPrint
protected  JasperPrint JRAbstractExporter.jasperPrint
           
 

Methods in dori.jasper.engine that return JasperPrint
static JasperPrint JasperManager.fillReport(java.lang.String sourceFileName, java.util.Map parameters, java.sql.Connection conn)
           
static JasperPrint JasperManager.fillReport(java.io.InputStream inputStream, java.util.Map parameters, java.sql.Connection conn)
           
static JasperPrint JasperManager.fillReport(JasperReport jasperReport, java.util.Map parameters, java.sql.Connection conn)
           
static JasperPrint JasperManager.fillReport(java.lang.String sourceFileName, java.util.Map parameters, JRDataSource jrDataSource)
           
static JasperPrint JasperManager.fillReport(java.io.InputStream inputStream, java.util.Map parameters, JRDataSource jrDataSource)
           
static JasperPrint JasperManager.fillReport(JasperReport jasperReport, java.util.Map parameters, JRDataSource jrDataSource)
           
static JasperPrint JasperManager.loadPrint(java.lang.String fileName)
           
static JasperPrint JasperManager.loadPrint(java.io.InputStream inputStream)
           
static JasperPrint JasperFillManager.fillReport(java.lang.String sourceFileName, java.util.Map parameters, java.sql.Connection conn)
           
static JasperPrint JasperFillManager.fillReport(java.io.InputStream inputStream, java.util.Map parameters, java.sql.Connection conn)
           
static JasperPrint JasperFillManager.fillReport(JasperReport jasperReport, java.util.Map parameters, java.sql.Connection conn)
           
static JasperPrint JasperFillManager.fillReport(java.lang.String sourceFileName, java.util.Map parameters, JRDataSource jrDataSource)
           
static JasperPrint JasperFillManager.fillReport(java.io.InputStream inputStream, java.util.Map parameters, JRDataSource jrDataSource)
           
static JasperPrint JasperFillManager.fillReport(JasperReport jasperReport, java.util.Map parameters, JRDataSource jrDataSource)
           
 

Methods in dori.jasper.engine with parameters of type JasperPrint
static void JasperPrintManager.printReportToPdfFile(JasperPrint jasperPrint, java.lang.String destFileName)
           
static void JasperPrintManager.printReportToPdfStream(JasperPrint jasperPrint, java.io.OutputStream outputStream)
           
static byte[] JasperPrintManager.printReportToPdf(JasperPrint jasperPrint)
           
static void JasperPrintManager.printReportToXmlFile(JasperPrint jasperPrint, java.lang.String destFileName, boolean isEmbeddingImages)
           
static void JasperPrintManager.printReportToXmlStream(JasperPrint jasperPrint, java.io.OutputStream outputStream)
           
static java.lang.String JasperPrintManager.printReportToXml(JasperPrint jasperPrint)
           
static boolean JasperPrintManager.printReport(JasperPrint jasperPrint, boolean withPrintDialog)
           
static boolean JasperPrintManager.printPage(JasperPrint jasperPrint, int pageIndex, boolean withPrintDialog)
           
static boolean JasperPrintManager.printPages(JasperPrint jasperPrint, int firstPageIndex, int lastPageIndex, boolean withPrintDialog)
           
static java.awt.Image JasperPrintManager.printPageToImage(JasperPrint jasperPrint, int pageIndex, float zoom)
           
static void JasperManager.printReportToPdfFile(JasperPrint jasperPrint, java.lang.String destFileName)
           
static void JasperManager.printReportToPdfStream(JasperPrint jasperPrint, java.io.OutputStream outputStream)
           
static byte[] JasperManager.printReportToPdf(JasperPrint jasperPrint)
           
static boolean JasperManager.printReport(JasperPrint jasperPrint, boolean withPrintDialog)
           
static boolean JasperManager.printPage(JasperPrint jasperPrint, int pageIndex, boolean withPrintDialog)
           
static boolean JasperManager.printPages(JasperPrint jasperPrint, int firstPageIndex, int lastPageIndex, boolean withPrintDialog)
           
static java.awt.Image JasperManager.printPageToImage(JasperPrint jasperPrint, int pageIndex, float zoom)
           
static void JasperExportManager.exportReportToPdfFile(JasperPrint jasperPrint, java.lang.String destFileName)
           
static void JasperExportManager.exportReportToPdfStream(JasperPrint jasperPrint, java.io.OutputStream outputStream)
           
static byte[] JasperExportManager.exportReportToPdf(JasperPrint jasperPrint)
           
static void JasperExportManager.exportReportToXmlFile(JasperPrint jasperPrint, java.lang.String destFileName, boolean isEmbeddingImages)
           
static void JasperExportManager.exportReportToXmlStream(JasperPrint jasperPrint, java.io.OutputStream outputStream)
           
static java.lang.String JasperExportManager.exportReportToXml(JasperPrint jasperPrint)
           
static void JasperExportManager.exportReportToHtmlFile(JasperPrint jasperPrint, java.lang.String destFileName)
           
 

Uses of JasperPrint in dori.jasper.engine.fill
 

Fields in dori.jasper.engine.fill declared as JasperPrint
protected  JasperPrint JRBaseFiller.jasperPrint
           
 

Methods in dori.jasper.engine.fill that return JasperPrint
static JasperPrint JRFiller.fillReport(JasperReport jasperReport, java.util.Map parameters, java.sql.Connection conn)
           
static JasperPrint JRFiller.fillReport(JasperReport jasperReport, java.util.Map parameters, JRDataSource dataSource)
           
 JasperPrint JRBaseFiller.getJasperPrint()
           
 JasperPrint JRBaseFiller.fill(java.util.Map parameterValues, java.sql.Connection conn)
           
protected  JasperPrint JRBaseFiller.fill(java.util.Map parameterValues, JRDataSource ds)
           
 

Uses of JasperPrint in dori.jasper.engine.print
 

Methods in dori.jasper.engine.print with parameters of type JasperPrint
static boolean JRPrinterAWT.printPages(JasperPrint jrPrint, int firstPageIndex, int lastPageIndex, boolean withPrintDialog)
           
static java.awt.Image JRPrinterAWT.printPageToImage(JasperPrint jrPrint, int pageIndex, float zoom)
           
 

Constructors in dori.jasper.engine.print with parameters of type JasperPrint
JRPrinterAWT(JasperPrint jrPrint)
           
 

Uses of JasperPrint in dori.jasper.engine.xml
 

Methods in dori.jasper.engine.xml that return JasperPrint
static JasperPrint JRPrintXmlLoader.load(java.lang.String sourceFileName)
           
static JasperPrint JRPrintXmlLoader.load(java.io.InputStream is)
           
 

Methods in dori.jasper.engine.xml with parameters of type JasperPrint
 void JRPrintXmlLoader.setJasperPrint(JasperPrint jasperPrint)
           
 

Uses of JasperPrint in dori.jasper.view
 

Methods in dori.jasper.view with parameters of type JasperPrint
abstract  void JRSaveContributor.save(JasperPrint jasperPrint, java.io.File file)
           
protected  void JRViewer.loadReport(JasperPrint jrPrint)
           
static void JasperViewer.viewReport(JasperPrint jasperPrint)
           
static void JasperViewer.viewReport(JasperPrint jasperPrint, boolean isExitOnClose)
           
 

Constructors in dori.jasper.view with parameters of type JasperPrint
JRViewer(JasperPrint jrPrint)
          Creates new form JRViewer
JasperViewer(JasperPrint jasperPrint)
          Creates new form JasperViewer
JasperViewer(JasperPrint jasperPrint, boolean isExitOnClose)
          Creates new form JasperViewer
 

Uses of JasperPrint in dori.jasper.view.save
 

Methods in dori.jasper.view.save with parameters of type JasperPrint
 void JREmbeddedImagesXmlSaveContributor.save(JasperPrint jasperPrint, java.io.File file)
           
 void JRMultipleSheetsXlsSaveContributor.save(JasperPrint jasperPrint, java.io.File file)
           
 void JRSingleSheetXlsSaveContributor.save(JasperPrint jasperPrint, java.io.File file)
           
 void JRXmlSaveContributor.save(JasperPrint jasperPrint, java.io.File file)
           
 void JRHtmlSaveContributor.save(JasperPrint jasperPrint, java.io.File file)
           
 void JRPdfSaveContributor.save(JasperPrint jasperPrint, java.io.File file)
           
 void JRCsvSaveContributor.save(JasperPrint jasperPrint, java.io.File file)
           
 



Copyright © 2001-2004 Teodor Danciu. All Rights Reserved.