Package | Description |
---|---|
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.convert | |
net.sf.jasperreports.engine.export |
Provides utility classes for exporting reports to various popular formats.
|
net.sf.jasperreports.engine.export.oasis | |
net.sf.jasperreports.engine.export.ooxml | |
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.j2ee.servlets | |
net.sf.jasperreports.swing | |
net.sf.jasperreports.view |
Contains the Jasper viewer implementation.
|
net.sf.jasperreports.view.save |
Contains classes for saving reports inside the Jasper viewer.
|
Modifier and Type | Field and Description |
---|---|
protected JasperPrint |
JRAbstractExporter.jasperPrint |
Modifier and Type | Field and Description |
---|---|
protected java.util.List<JasperPrint> |
JRAbstractExporter.jasperPrintList |
Modifier and Type | Method and Description |
---|---|
static JasperPrint |
JasperFillManager.fillReport(java.io.InputStream inputStream,
java.util.Map<java.lang.String,java.lang.Object> parameters)
Fills the compiled report design loaded from the supplied input stream and returns
the generated report object.
|
static JasperPrint |
JasperFillManager.fillReport(java.io.InputStream inputStream,
java.util.Map<java.lang.String,java.lang.Object> 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(java.io.InputStream inputStream,
java.util.Map<java.lang.String,java.lang.Object> 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<java.lang.String,java.lang.Object> parameters)
Fills the compiled report design supplied as the first parameter and returns
the generated report object.
|
static JasperPrint |
JasperFillManager.fillReport(JasperReport jasperReport,
java.util.Map<java.lang.String,java.lang.Object> 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(JasperReport jasperReport,
java.util.Map<java.lang.String,java.lang.Object> parameters,
JRDataSource dataSource)
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<java.lang.String,java.lang.Object> params)
Fills the compiled report design loaded from the specified file and returns
the generated report object.
|
static JasperPrint |
JasperFillManager.fillReport(java.lang.String sourceFileName,
java.util.Map<java.lang.String,java.lang.Object> params,
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.lang.String sourceFileName,
java.util.Map<java.lang.String,java.lang.Object> params,
JRDataSource dataSource)
Fills the compiled report design loaded from the specified file and returns
the generated report object.
|
JasperPrint |
JRAbstractExporter.BaseExporterContext.getExportedReport() |
Modifier and Type | Method and Description |
---|---|
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 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.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 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.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 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 boolean |
JasperPrintManager.printReport(JasperPrint jasperPrint,
boolean withPrintDialog) |
protected void |
JRAbstractExporter.setJasperPrint(JasperPrint jasperPrint) |
Constructor and Description |
---|
JRVirtualPrintPage(JasperPrint printObject,
JRVirtualizationContext virtualizationContext)
Constructs a virtualizable page.
|
JRVirtualPrintPage(JasperPrint printObject,
JRVirtualizer virtualizer,
JRVirtualizationContext virtualizationContext)
Deprecated.
the virtualizer should be passed as part of the virtualization context,
use
JRVirtualPrintPage.JRVirtualPrintPage(JasperPrint, JRVirtualizationContext) instead |
Modifier and Type | Method and Description |
---|---|
JasperPrint |
ReportConverter.getJasperPrint() |
Modifier and Type | Method and Description |
---|---|
JasperPrint |
JRXhtmlExporter.getExportedReport() |
JasperPrint |
JRExporterContext.getExportedReport()
Returns the report which is currently exported.
|
JasperPrint |
JRHtmlExporter.getExportedReport() |
JasperPrint |
GenericElementReportTransformer.TransformerContext.getReport() |
JasperPrint |
GenericElementTransformerContext.getReport()
Returns the report which is currently processed.
|
Modifier and Type | Method and Description |
---|---|
protected java.util.List<ExporterFilterFactory> |
DefaultExporterFilterFactory.getAllFilterFactories(JasperPrint report) |
static void |
GenericElementReportTransformer.transformGenericElements(JasperPrint report,
java.lang.String transformerExportKey)
Applies generic element transformers of a specific key to a filled report
by replacing generic elements with the transformed elements.
|
Modifier and Type | Method and Description |
---|---|
static JRPrintImage |
JRXhtmlExporter.getImage(java.util.List<JasperPrint> jasperPrintList,
JRPrintElementIndex imageIndex) |
static JRPrintImage |
JRHtmlExporter.getImage(java.util.List<JasperPrint> jasperPrintList,
JRPrintElementIndex imageIndex) |
static JRPrintImage |
JRXhtmlExporter.getImage(java.util.List<JasperPrint> jasperPrintList,
java.lang.String imageName) |
static JRPrintImage |
JRHtmlExporter.getImage(java.util.List<JasperPrint> jasperPrintList,
java.lang.String imageName) |
Constructor and Description |
---|
GenericElementReportTransformer.TransformerContext(JasperPrint report) |
JRHtmlExporterHelper(JasperPrint jasperPrint) |
Modifier and Type | Method and Description |
---|---|
static JRPrintImage |
JROpenDocumentExporter.getImage(java.util.List<JasperPrint> jasperPrintList,
JRPrintElementIndex imageIndex) |
static JRPrintImage |
JROpenDocumentExporter.getImage(java.util.List<JasperPrint> jasperPrintList,
java.lang.String imageName) |
Constructor and Description |
---|
StyleBuilder(java.util.List<JasperPrint> jasperPrintList,
java.io.Writer writer) |
Modifier and Type | Method and Description |
---|---|
void |
DocxSettingsHelper.export(JasperPrint jasperPrint) |
void |
XlsxSheetHelper.exportFooter(int index,
JasperPrint jasperPrint,
boolean isIgnorePageMargins) |
void |
XlsxSheetHelper.exportFooter(int index,
JasperPrint jasperPrint,
boolean isIgnorePageMargins,
java.lang.String autoFilter) |
void |
PptxPresentationHelper.exportFooter(JasperPrint jasperPrint) |
void |
DocxDocumentHelper.exportFooter(JasperPrint jasperPrint) |
void |
XlsxSheetHelper.exportHeader(int rowFreeze,
int columnFreeze,
JasperPrint jasperPrint) |
Modifier and Type | Method and Description |
---|---|
void |
DocxStyleHelper.export(java.util.List<JasperPrint> jasperPrintList) |
static JRPrintImage |
JRXlsxExporter.getImage(java.util.List<JasperPrint> jasperPrintList,
JRPrintElementIndex imageIndex) |
static JRPrintImage |
JRPptxExporter.getImage(java.util.List<JasperPrint> jasperPrintList,
JRPrintElementIndex imageIndex) |
static JRPrintImage |
JRDocxExporter.getImage(java.util.List<JasperPrint> jasperPrintList,
JRPrintElementIndex imageIndex) |
static JRPrintImage |
JRXlsxExporter.getImage(java.util.List<JasperPrint> jasperPrintList,
java.lang.String imageName) |
static JRPrintImage |
JRPptxExporter.getImage(java.util.List<JasperPrint> jasperPrintList,
java.lang.String imageName) |
static JRPrintImage |
JRDocxExporter.getImage(java.util.List<JasperPrint> jasperPrintList,
java.lang.String imageName) |
Modifier and Type | Field and Description |
---|---|
protected JasperPrint |
JRBaseFiller.jasperPrint |
Modifier and Type | Method and Description |
---|---|
JasperPrint |
JRBaseFiller.fill(java.util.Map<java.lang.String,java.lang.Object> parameterValues) |
JasperPrint |
JRBaseFiller.fill(java.util.Map<java.lang.String,java.lang.Object> parameterValues,
java.sql.Connection conn) |
JasperPrint |
JRBaseFiller.fill(java.util.Map<java.lang.String,java.lang.Object> parameterValues,
JRDataSource ds) |
static JasperPrint |
JRFiller.fillReport(JasperReport jasperReport,
java.util.Map<java.lang.String,java.lang.Object> parameters)
Fills a report.
|
static JasperPrint |
JRFiller.fillReport(JasperReport jasperReport,
java.util.Map<java.lang.String,java.lang.Object> parameters,
java.sql.Connection conn) |
static JasperPrint |
JRFiller.fillReport(JasperReport jasperReport,
java.util.Map<java.lang.String,java.lang.Object> parameters,
JRDataSource dataSource) |
JasperPrint |
JRBaseFiller.getJasperPrint() |
Modifier and Type | Method and Description |
---|---|
static JRVirtualizationContext |
JRVirtualizationContext.getRegistered(JasperPrint print)
Returns the virtualization context registered for a print object.
|
protected void |
AsynchronousFillHandle.notifyFinish(JasperPrint print) |
static void |
JRVirtualizationContext.register(JRVirtualizationContext context,
JasperPrint print)
Registers a virtualization context for
JasperPrint object. |
void |
AsynchronousFilllListener.reportFinished(JasperPrint jasperPrint)
Called when the report filling is done.
|
Modifier and Type | Method and Description |
---|---|
static long |
JRPrinterAWT.getImageSize(JasperPrint jasperPrint,
float zoom) |
static boolean |
JRPrinterAWT.printPages(JasperPrint jrPrint,
int firstPageIndex,
int lastPageIndex,
boolean withPrintDialog) |
static java.awt.Image |
JRPrinterAWT.printPageToImage(JasperPrint jrPrint,
int pageIndex,
float zoom) |
Constructor and Description |
---|
JRPrinterAWT(JasperPrint jrPrint) |
Modifier and Type | Method and Description |
---|---|
static JasperPrint |
JRPrintXmlLoader.load(java.io.InputStream is) |
static JasperPrint |
JRPrintXmlLoader.load(java.lang.String sourceFileName) |
Modifier and Type | Method and Description |
---|---|
void |
JRPrintXmlLoader.setJasperPrint(JasperPrint jasperPrint) |
Modifier and Type | Method and Description |
---|---|
static java.util.List<JasperPrint> |
BaseHttpServlet.getJasperPrintList(HttpServletRequest request) |
Modifier and Type | Method and Description |
---|---|
JasperPrint |
JRViewerController.getJasperPrint() |
Modifier and Type | Method and Description |
---|---|
void |
JRViewerController.loadReport(JasperPrint jrPrint) |
Constructor and Description |
---|
JRViewer(JasperPrint jrPrint)
Creates new form JRViewer
|
JRViewer(JasperPrint jrPrint,
java.util.Locale locale)
Creates new form JRViewer
|
JRViewer(JasperPrint jrPrint,
java.util.Locale locale,
java.util.ResourceBundle resBundle)
Creates new form JRViewer
|
Modifier and Type | Method and Description |
---|---|
protected void |
JRViewer.loadReport(JasperPrint jrPrint) |
abstract void |
JRSaveContributor.save(JasperPrint jasperPrint,
java.io.File file) |
static void |
JasperViewer.viewReport(JasperPrint jasperPrint) |
static void |
JasperViewer.viewReport(JasperPrint jasperPrint,
boolean isExitOnClose) |
static void |
JasperViewer.viewReport(JasperPrint jasperPrint,
boolean isExitOnClose,
java.util.Locale locale) |
Constructor and Description |
---|
JasperViewer(JasperPrint jasperPrint)
Creates new form JasperViewer
|
JasperViewer(JasperPrint jasperPrint,
boolean isExitOnClose)
Creates new form JasperViewer
|
JasperViewer(JasperPrint jasperPrint,
boolean isExitOnClose,
java.util.Locale locale)
Creates new form JasperViewer
|
JRViewer(JasperPrint jrPrint)
Creates new form JRViewer
|
JRViewer(JasperPrint jrPrint,
java.util.Locale locale)
Creates new form JRViewer
|
JRViewer(JasperPrint jrPrint,
java.util.Locale locale,
java.util.ResourceBundle resBundle)
Creates new form JRViewer
|
Modifier and Type | Method and Description |
---|---|
void |
JRSingleSheetXlsSaveContributor.save(JasperPrint jasperPrint,
java.io.File file) |
void |
JRRtfSaveContributor.save(JasperPrint jasperPrint,
java.io.File file) |
void |
JRPrintSaveContributor.save(JasperPrint jasperPrint,
java.io.File file) |
void |
JRPdfSaveContributor.save(JasperPrint jasperPrint,
java.io.File file) |
void |
JRDocxSaveContributor.save(JasperPrint jasperPrint,
java.io.File file) |
void |
JROdtSaveContributor.save(JasperPrint jasperPrint,
java.io.File file) |
void |
JRHtmlSaveContributor.save(JasperPrint jasperPrint,
java.io.File file) |
void |
JRCsvSaveContributor.save(JasperPrint jasperPrint,
java.io.File file) |
void |
JRMultipleSheetsXlsSaveContributor.save(JasperPrint jasperPrint,
java.io.File file) |
void |
JRXmlSaveContributor.save(JasperPrint jasperPrint,
java.io.File file) |
void |
JREmbeddedImagesXmlSaveContributor.save(JasperPrint jasperPrint,
java.io.File file) |
© 2001-2010 Jaspersoft Corporation www.jaspersoft.com