|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use JasperPrint | |
net.sf.jasperreports.engine | Provides access to the library's main functionality through fa?ade classes for compiling, filling and exporting reports and also publishes the library's main interfaces and classes. |
net.sf.jasperreports.engine.base | Contains base implementations for the library's main interfaces. |
net.sf.jasperreports.engine.fill | Contains fill time implementations for the library's main interfaces and the entire engine used in the filling process (the actual core of JasperReports). |
net.sf.jasperreports.engine.print | Provides printing support. |
net.sf.jasperreports.engine.xml | Contains classes for loading report templates from XML files. |
net.sf.jasperreports.view | Contains the Jasper viewer implementation. |
net.sf.jasperreports.view.save | Contains classes for saving reports inside the Jasper viewer. |
Uses of JasperPrint in net.sf.jasperreports.engine |
Fields in net.sf.jasperreports.engine declared as JasperPrint | |
protected JasperPrint |
JRAbstractExporter.jasperPrint
|
Methods in net.sf.jasperreports.engine that return JasperPrint | |
static JasperPrint |
JasperFillManager.fillReport(java.lang.String sourceFileName,
java.util.Map parameters,
java.sql.Connection connection)
Fills the compiled report design loaded from the specified file and returns the generated report object. |
static JasperPrint |
JasperFillManager.fillReport(java.io.InputStream inputStream,
java.util.Map parameters,
java.sql.Connection connection)
Fills the compiled report design loaded from the supplied input stream and returns the generated report object. |
static JasperPrint |
JasperFillManager.fillReport(JasperReport jasperReport,
java.util.Map parameters,
java.sql.Connection connection)
Fills the compiled report design supplied as the first parameter and returns the generated report object. |
static JasperPrint |
JasperFillManager.fillReport(java.lang.String sourceFileName,
java.util.Map parameters,
JRDataSource dataSource)
Fills the compiled report design loaded from the specified file and returns the generated report object. |
static JasperPrint |
JasperFillManager.fillReport(java.io.InputStream inputStream,
java.util.Map parameters,
JRDataSource dataSource)
Fills the compiled report design loaded from the supplied input stream and returns the generated report object. |
static JasperPrint |
JasperFillManager.fillReport(JasperReport jasperReport,
java.util.Map parameters,
JRDataSource dataSource)
Fills the compiled report design supplied as the first parameter and returns the generated report object. |
static JasperPrint |
JasperManager.fillReport(java.lang.String sourceFileName,
java.util.Map parameters,
java.sql.Connection conn)
Deprecated. Replaced by JasperFillManager.fillReport(String, Map, Connection) . |
static JasperPrint |
JasperManager.fillReport(java.io.InputStream inputStream,
java.util.Map parameters,
java.sql.Connection conn)
Deprecated. Replaced by JasperFillManager.fillReport(InputStream, Map, Connection) . |
static JasperPrint |
JasperManager.fillReport(JasperReport jasperReport,
java.util.Map parameters,
java.sql.Connection conn)
Deprecated. Replaced by JasperFillManager.fillReport(JasperReport, Map, Connection) . |
static JasperPrint |
JasperManager.fillReport(java.lang.String sourceFileName,
java.util.Map parameters,
JRDataSource jrDataSource)
Deprecated. Replaced by JasperFillManager.fillReport(String, Map, JRDataSource) . |
static JasperPrint |
JasperManager.fillReport(java.io.InputStream inputStream,
java.util.Map parameters,
JRDataSource jrDataSource)
Deprecated. Replaced by JasperFillManager.fillReport(InputStream, Map, JRDataSource) . |
static JasperPrint |
JasperManager.fillReport(JasperReport jasperReport,
java.util.Map parameters,
JRDataSource jrDataSource)
Deprecated. Replaced by JasperFillManager.fillReport(JasperReport, Map, JRDataSource) . |
static JasperPrint |
JasperManager.loadPrint(java.lang.String fileName)
Deprecated. Use JRLoader.loadObject(String) with the appropriate cast. |
static JasperPrint |
JasperManager.loadPrint(java.io.InputStream inputStream)
Deprecated. Use JRLoader.loadObject(InputStream) with the appropriate cast. |
Methods in net.sf.jasperreports.engine with parameters of type JasperPrint | |
static void |
JasperPrintManager.printReportToPdfFile(JasperPrint jasperPrint,
java.lang.String destFileName)
Deprecated. Replaced by JasperExportManager.exportReportToPdfFile(JasperPrint, String) . |
static void |
JasperPrintManager.printReportToPdfStream(JasperPrint jasperPrint,
java.io.OutputStream outputStream)
Deprecated. Replaced by JasperExportManager.exportReportToPdfStream(JasperPrint, OutputStream) . |
static byte[] |
JasperPrintManager.printReportToPdf(JasperPrint jasperPrint)
Deprecated. Replaced by JasperExportManager.exportReportToPdf(JasperPrint) . |
static void |
JasperPrintManager.printReportToXmlFile(JasperPrint jasperPrint,
java.lang.String destFileName,
boolean isEmbeddingImages)
Deprecated. Replaced by JasperExportManager.exportReportToXmlFile(JasperPrint, String, boolean) . |
static void |
JasperPrintManager.printReportToXmlStream(JasperPrint jasperPrint,
java.io.OutputStream outputStream)
Deprecated. Replaced by JasperExportManager.exportReportToXmlStream(JasperPrint, OutputStream) . |
static java.lang.String |
JasperPrintManager.printReportToXml(JasperPrint jasperPrint)
Deprecated. Replaced by JasperExportManager.exportReportToXml(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 |
JasperExportManager.exportReportToPdfFile(JasperPrint jasperPrint,
java.lang.String destFileName)
Exports the generated report file specified by the first parameter into PDF format, the result being placed in the second file parameter. |
static void |
JasperExportManager.exportReportToPdfStream(JasperPrint jasperPrint,
java.io.OutputStream outputStream)
Exports the generated report object received as first parameter into PDF format and writes the results to the output stream specified by the second parameter. |
static byte[] |
JasperExportManager.exportReportToPdf(JasperPrint jasperPrint)
Exports the generated report object received as parameter into PDF format and returns the binary content as a byte array. |
static void |
JasperExportManager.exportReportToXmlFile(JasperPrint jasperPrint,
java.lang.String destFileName,
boolean isEmbeddingImages)
Exports the generated report object received as parameter into XML format, placing the result into the second file parameter. |
static void |
JasperExportManager.exportReportToXmlStream(JasperPrint jasperPrint,
java.io.OutputStream outputStream)
Exports the generated report object supplied as the first parameter into XML format, and writes the result to the output stream specified by the second parameter. |
static java.lang.String |
JasperExportManager.exportReportToXml(JasperPrint jasperPrint)
Exports the generated report object supplied as parameter into XML format and returs the result as String. |
static void |
JasperExportManager.exportReportToHtmlFile(JasperPrint jasperPrint,
java.lang.String destFileName)
Exports the generated report object received as parameter into HTML format, placing the result into the second file parameter. |
static void |
JasperManager.printReportToPdfFile(JasperPrint jasperPrint,
java.lang.String destFileName)
Deprecated. Replaced by JasperExportManager.exportReportToPdfFile(JasperPrint, String) . |
static void |
JasperManager.printReportToPdfStream(JasperPrint jasperPrint,
java.io.OutputStream outputStream)
Deprecated. Replaced by JasperExportManager.exportReportToPdfStream(JasperPrint, OutputStream) . |
static byte[] |
JasperManager.printReportToPdf(JasperPrint jasperPrint)
Deprecated. Replaced by JasperExportManager.exportReportToPdf(JasperPrint) . |
static boolean |
JasperManager.printReport(JasperPrint jasperPrint,
boolean withPrintDialog)
Deprecated. Replaced by JasperPrintManager.printReport(JasperPrint, boolean) . |
static boolean |
JasperManager.printPage(JasperPrint jasperPrint,
int pageIndex,
boolean withPrintDialog)
Deprecated. Replaced by JasperPrintManager.printPage(JasperPrint, int, boolean) . |
static boolean |
JasperManager.printPages(JasperPrint jasperPrint,
int firstPageIndex,
int lastPageIndex,
boolean withPrintDialog)
Deprecated. Replaced by JasperPrintManager.printPages(JasperPrint, int, int, boolean) . |
static java.awt.Image |
JasperManager.printPageToImage(JasperPrint jasperPrint,
int pageIndex,
float zoom)
Deprecated. Replaced by JasperPrintManager.printPageToImage(JasperPrint, int, float) . |
Uses of JasperPrint in net.sf.jasperreports.engine.base |
Constructors in net.sf.jasperreports.engine.base with parameters of type JasperPrint | |
JRVirtualPrintPage(JasperPrint printObject,
JRVirtualizer virtualizer)
Constructs a virtualizable page. |
Uses of JasperPrint in net.sf.jasperreports.engine.fill |
Fields in net.sf.jasperreports.engine.fill declared as JasperPrint | |
protected JasperPrint |
JRBaseFiller.jasperPrint
|
Methods in net.sf.jasperreports.engine.fill that return JasperPrint | |
JasperPrint |
JRBaseFiller.getJasperPrint()
|
JasperPrint |
JRBaseFiller.fill(java.util.Map parameterValues,
java.sql.Connection conn)
|
JasperPrint |
JRBaseFiller.fill(java.util.Map parameterValues,
JRDataSource ds)
|
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)
|
Methods in net.sf.jasperreports.engine.fill with parameters of type JasperPrint | |
void |
AsynchronousFilllListener.reportFinished(JasperPrint jasperPrint)
Called when the report filling is done. |
protected void |
AsynchronousFillHandle.notifyFinish(JasperPrint print)
|
Uses of JasperPrint in net.sf.jasperreports.engine.print |
Methods in net.sf.jasperreports.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 net.sf.jasperreports.engine.print with parameters of type JasperPrint | |
JRPrinterAWT(JasperPrint jrPrint)
|
Uses of JasperPrint in net.sf.jasperreports.engine.xml |
Methods in net.sf.jasperreports.engine.xml that return JasperPrint | |
static JasperPrint |
JRPrintXmlLoader.load(java.lang.String sourceFileName)
|
static JasperPrint |
JRPrintXmlLoader.load(java.io.InputStream is)
|
Methods in net.sf.jasperreports.engine.xml with parameters of type JasperPrint | |
void |
JRPrintXmlLoader.setJasperPrint(JasperPrint jasperPrint)
|
Uses of JasperPrint in net.sf.jasperreports.view |
Methods in net.sf.jasperreports.view with parameters of type JasperPrint | |
abstract void |
JRSaveContributor.save(JasperPrint jasperPrint,
java.io.File file)
|
static void |
JasperViewer.viewReport(JasperPrint jasperPrint)
|
static void |
JasperViewer.viewReport(JasperPrint jasperPrint,
boolean isExitOnClose)
|
protected void |
JRViewer.loadReport(JasperPrint jrPrint)
|
Constructors in net.sf.jasperreports.view with parameters of type JasperPrint | |
JasperViewer(JasperPrint jasperPrint)
Creates new form JasperViewer |
|
JasperViewer(JasperPrint jasperPrint,
boolean isExitOnClose)
Creates new form JasperViewer |
|
JRViewer(JasperPrint jrPrint)
Creates new form JRViewer |
Uses of JasperPrint in net.sf.jasperreports.view.save |
Methods in net.sf.jasperreports.view.save with parameters of type JasperPrint | |
void |
JRCsvSaveContributor.save(JasperPrint jasperPrint,
java.io.File file)
|
void |
JRHtmlSaveContributor.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 |
JRPdfSaveContributor.save(JasperPrint jasperPrint,
java.io.File file)
|
void |
JREmbeddedImagesXmlSaveContributor.save(JasperPrint jasperPrint,
java.io.File file)
|
void |
JRXmlSaveContributor.save(JasperPrint jasperPrint,
java.io.File file)
|
void |
JRRtfSaveContributor.save(JasperPrint jasperPrint,
java.io.File file)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |