Uses of Class
net.sf.jasperreports.engine.JasperPrint

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.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.util Utility classes. 
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. 
net.sf.jasperreports.web.servlets   
 

Uses of JasperPrint in net.sf.jasperreports.engine
 

Fields in net.sf.jasperreports.engine declared as JasperPrint
protected  JasperPrint JRAbstractExporter.jasperPrint
           
 

Fields in net.sf.jasperreports.engine with type parameters of type JasperPrint
protected  java.util.List<JasperPrint> JRAbstractExporter.jasperPrintList
           
 

Methods in net.sf.jasperreports.engine that return JasperPrint
 JasperPrint JasperFillManager.fill(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.
 JasperPrint JasperFillManager.fill(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.
 JasperPrint JasperFillManager.fill(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.
 JasperPrint JasperFillManager.fill(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.
 JasperPrint JasperFillManager.fill(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.
 JasperPrint JasperFillManager.fill(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.
 JasperPrint JasperFillManager.fill(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.
 JasperPrint JasperFillManager.fill(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.
 JasperPrint JasperFillManager.fill(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.
static JasperPrint JasperFillManager.fillReport(java.io.InputStream inputStream, java.util.Map<java.lang.String,java.lang.Object> parameters)
           
static JasperPrint JasperFillManager.fillReport(java.io.InputStream inputStream, java.util.Map<java.lang.String,java.lang.Object> parameters, java.sql.Connection connection)
           
static JasperPrint JasperFillManager.fillReport(java.io.InputStream inputStream, java.util.Map<java.lang.String,java.lang.Object> parameters, JRDataSource dataSource)
           
static JasperPrint JasperFillManager.fillReport(JasperReport jasperReport, java.util.Map<java.lang.String,java.lang.Object> parameters)
           
static JasperPrint JasperFillManager.fillReport(JasperReport jasperReport, java.util.Map<java.lang.String,java.lang.Object> parameters, java.sql.Connection connection)
           
static JasperPrint JasperFillManager.fillReport(JasperReport jasperReport, java.util.Map<java.lang.String,java.lang.Object> parameters, JRDataSource dataSource)
           
static JasperPrint JasperFillManager.fillReport(java.lang.String sourceFileName, java.util.Map<java.lang.String,java.lang.Object> params)
           
static JasperPrint JasperFillManager.fillReport(java.lang.String sourceFileName, java.util.Map<java.lang.String,java.lang.Object> params, java.sql.Connection connection)
           
static JasperPrint JasperFillManager.fillReport(java.lang.String sourceFileName, java.util.Map<java.lang.String,java.lang.Object> params, JRDataSource dataSource)
           
 JasperPrint JRAbstractExporter.BaseExporterContext.getExportedReport()
           
 

Methods in net.sf.jasperreports.engine with parameters of type JasperPrint
static void JasperExportManager.exportReportToHtmlFile(JasperPrint jasperPrint, java.lang.String destFileName)
           
static byte[] JasperExportManager.exportReportToPdf(JasperPrint jasperPrint)
           
static void JasperExportManager.exportReportToPdfFile(JasperPrint jasperPrint, java.lang.String destFileName)
           
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)
           
static void JasperExportManager.exportReportToXmlFile(JasperPrint jasperPrint, java.lang.String destFileName, boolean isEmbeddingImages)
           
static void JasperExportManager.exportReportToXmlStream(JasperPrint jasperPrint, java.io.OutputStream outputStream)
           
 void JasperExportManager.exportToHtmlFile(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.
 byte[] JasperExportManager.exportToPdf(JasperPrint jasperPrint)
          Exports the generated report object received as parameter into PDF format and returns the binary content as a byte array.
 void JasperExportManager.exportToPdfFile(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.
 void JasperExportManager.exportToPdfStream(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.
 java.lang.String JasperExportManager.exportToXml(JasperPrint jasperPrint)
          Exports the generated report object supplied as parameter into XML format and returs the result as String.
 void JasperExportManager.exportToXmlFile(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.
 void JasperExportManager.exportToXmlStream(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.
 boolean JasperPrintManager.print(JasperPrint jasperPrint, boolean withPrintDialog)
           
 boolean JasperPrintManager.print(JasperPrint jasperPrint, int pageIndex, boolean withPrintDialog)
           
 boolean JasperPrintManager.print(JasperPrint jasperPrint, int firstPageIndex, int lastPageIndex, 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 boolean JasperPrintManager.printReport(JasperPrint jasperPrint, boolean withPrintDialog)
           
 java.awt.Image JasperPrintManager.printToImage(JasperPrint jasperPrint, int pageIndex, float zoom)
           
protected  void JRAbstractExporter.setJasperPrint(JasperPrint jasperPrint)
           
 

Uses of JasperPrint in net.sf.jasperreports.engine.base
 

Constructors in net.sf.jasperreports.engine.base with parameters of type JasperPrint
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
 

Uses of JasperPrint in net.sf.jasperreports.engine.convert
 

Methods in net.sf.jasperreports.engine.convert that return JasperPrint
 JasperPrint ReportConverter.getJasperPrint()
           
 

Uses of JasperPrint in net.sf.jasperreports.engine.export
 

Methods in net.sf.jasperreports.engine.export that return JasperPrint
 JasperPrint JRXhtmlExporter.getExportedReport()
           
 JasperPrint JRExporterContext.getExportedReport()
          Returns the report which is currently exported.
 JasperPrint JRHtmlExporter.getExportedReport()
           
 JasperPrint GenericElementTransformerContext.getReport()
          Returns the report which is currently processed.
 JasperPrint GenericElementReportTransformer.TransformerContext.getReport()
           
 

Methods in net.sf.jasperreports.engine.export with parameters of type JasperPrint
protected  java.util.List<ExporterFilterFactory> DefaultExporterFilterFactory.getAllFilterFactories(JasperPrint report)
          Deprecated. Replaced by DefaultExporterFilterFactory.getAllFilterFactories(JasperReportsContext, JasperPrint).
protected  java.util.List<ExporterFilterFactory> DefaultExporterFilterFactory.getAllFilterFactories(JasperReportsContext jasperReportsContext, JasperPrint report)
           
static void GenericElementReportTransformer.transformGenericElements(JasperPrint report, java.lang.String transformerExportKey)
          Deprecated. Replaced by GenericElementReportTransformer.transformGenericElements(JasperReportsContext, JasperPrint, String).
static void GenericElementReportTransformer.transformGenericElements(JasperReportsContext jasperReportsContext, 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.
 

Method parameters in net.sf.jasperreports.engine.export with type arguments of type JasperPrint
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)
           
 

Constructors in net.sf.jasperreports.engine.export with parameters of type JasperPrint
GenericElementReportTransformer.TransformerContext(JasperReportsContext jasperReportsContext, JasperPrint report)
           
JRHtmlExporterHelper(JasperPrint jasperPrint)
           
 

Uses of JasperPrint in net.sf.jasperreports.engine.export.oasis
 

Method parameters in net.sf.jasperreports.engine.export.oasis with type arguments of type JasperPrint
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 parameters in net.sf.jasperreports.engine.export.oasis with type arguments of type JasperPrint
StyleBuilder(java.util.List<JasperPrint> jasperPrintList, java.io.Writer writer)
           
 

Uses of JasperPrint in net.sf.jasperreports.engine.export.ooxml
 

Fields in net.sf.jasperreports.engine.export.ooxml declared as JasperPrint
protected  JasperPrint JRXlsxExporter.currentSheetJasperPrint
           
 

Methods in net.sf.jasperreports.engine.export.ooxml with parameters of type JasperPrint
 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 XlsxSheetHelper.exportFooter(int index, JasperPrint jasperPrint, boolean isIgnorePageMargins, java.lang.String autoFilter, java.lang.Integer scale)
           
 void XlsxSheetHelper.exportFooter(int index, JasperPrint jasperPrint, boolean isIgnorePageMargins, java.lang.String autoFilter, java.lang.Integer scale, java.lang.Integer firstPageNumber, boolean firstPageNotSet)
           
 void DocxDocumentHelper.exportFooter(JasperPrint jasperPrint)
           
 void PptxPresentationHelper.exportFooter(JasperPrint jasperPrint)
           
 void XlsxSheetHelper.exportHeader(int scale, int rowFreeze, int columnFreeze, JasperPrint jasperPrint)
           
 void XlsxSheetHelper.exportHeader(int rowFreeze, int columnFreeze, JasperPrint jasperPrint)
           
 

Method parameters in net.sf.jasperreports.engine.export.ooxml with type arguments of type JasperPrint
 void DocxStyleHelper.export(java.util.List<JasperPrint> jasperPrintList)
           
 JRPrintImage JRPptxExporter.getImage(java.util.List<JasperPrint> jasperPrintList, JRPrintElementIndex imageIndex)
           
 JRPrintImage JRXlsxExporter.getImage(java.util.List<JasperPrint> jasperPrintList, JRPrintElementIndex imageIndex)
           
 JRPrintImage JRDocxExporter.getImage(java.util.List<JasperPrint> jasperPrintList, JRPrintElementIndex imageIndex)
           
 JRPrintImage JRPptxExporter.getImage(java.util.List<JasperPrint> jasperPrintList, java.lang.String imageName)
           
 JRPrintImage JRXlsxExporter.getImage(java.util.List<JasperPrint> jasperPrintList, java.lang.String imageName)
           
 JRPrintImage JRDocxExporter.getImage(java.util.List<JasperPrint> jasperPrintList, java.lang.String imageName)
           
 

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
static JasperPrint JRFiller.fill(JasperReportsContext jasperReportsContext, JasperReport jasperReport, java.util.Map<java.lang.String,java.lang.Object> parameters)
          Fills a report.
static JasperPrint JRFiller.fill(JasperReportsContext jasperReportsContext, JasperReport jasperReport, java.util.Map<java.lang.String,java.lang.Object> parameters, java.sql.Connection conn)
           
static JasperPrint JRFiller.fill(JasperReportsContext jasperReportsContext, JasperReport jasperReport, java.util.Map<java.lang.String,java.lang.Object> parameters, JRDataSource dataSource)
           
 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)
          Deprecated. Replaced by JRFiller.fill(JasperReportsContext, JasperReport, Map).
static JasperPrint JRFiller.fillReport(JasperReport jasperReport, java.util.Map<java.lang.String,java.lang.Object> parameters, java.sql.Connection conn)
          Deprecated. Replaced by JRFiller.fill(JasperReportsContext, JasperReport, Map, Connection).
static JasperPrint JRFiller.fillReport(JasperReport jasperReport, java.util.Map<java.lang.String,java.lang.Object> parameters, JRDataSource dataSource)
          Deprecated. Replaced by JRFiller.fill(JasperReportsContext, JasperReport, Map, JRDataSource).
 JasperPrint JRBaseFiller.getJasperPrint()
           
 

Methods in net.sf.jasperreports.engine.fill with parameters of type JasperPrint
static JRVirtualizationContext JRVirtualizationContext.getRegistered(JasperPrint print)
          Returns the virtualization context registered for a print object.
protected  void BaseFillHandle.notifyFinish(JasperPrint print)
           
 void CompositeFillListener.pageGenerated(JasperPrint jasperPrint, int pageIndex)
           
 void FillListener.pageGenerated(JasperPrint jasperPrint, int pageIndex)
          Called when a report page has been generated.
 void CompositeFillListener.pageUpdated(JasperPrint jasperPrint, int pageIndex)
           
 void FillListener.pageUpdated(JasperPrint jasperPrint, int pageIndex)
          Called when a previously generated page has been updated, usually by evaluating a delayed element.
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.
 

Uses of JasperPrint in net.sf.jasperreports.engine.print
 

Methods in net.sf.jasperreports.engine.print with parameters of type JasperPrint
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)
           
 

Constructors in net.sf.jasperreports.engine.print with parameters of type JasperPrint
JRPrinterAWT(JasperPrint jrPrint)
           
JRPrinterAWT(JasperReportsContext jasperReportsContext, JasperPrint jasperPrint)
           
 

Uses of JasperPrint in net.sf.jasperreports.engine.util
 

Methods in net.sf.jasperreports.engine.util that return JasperPrint
static JasperPrint JRLoader.loadJasperPrint(java.io.File file, JRVirtualizer virtualizer)
          Loads a JasperPrint object from a file, optionally using a virtualizer for the object.
static JasperPrint JRLoader.loadJasperPrint(java.io.InputStream is, JRVirtualizer virtualizer)
          Loads a JasperPrint object from a stream, optionally using a virtualizer for the object.
static JasperPrint JRLoader.loadJasperPrint(java.net.URL url, JRVirtualizer virtualizer)
          Loads a JasperPrint object from a URL, optionally using a virtualizer for the object.
static JasperPrint JRLoader.loadJasperPrintFromFile(java.lang.String fileName, JRVirtualizer virtualizer)
          Loads a JasperPrint object from a file, optionally using a virtualizer for the object.
 

Uses of JasperPrint in net.sf.jasperreports.engine.xml
 

Methods in net.sf.jasperreports.engine.xml that return JasperPrint
static JasperPrint JRPrintXmlLoader.load(java.io.InputStream is)
           
static JasperPrint JRPrintXmlLoader.load(JasperReportsContext jasperReportsContext, java.io.InputStream is)
           
static JasperPrint JRPrintXmlLoader.load(java.lang.String sourceFileName)
           
static JasperPrint JRPrintXmlLoader.loadFromFile(JasperReportsContext jasperReportsContext, java.lang.String sourceFileName)
           
static JasperPrint JRPrintXmlLoader.loadFromFile(java.lang.String sourceFileName)
           
 

Methods in net.sf.jasperreports.engine.xml with parameters of type JasperPrint
 void JRPrintXmlLoader.setJasperPrint(JasperPrint jasperPrint)
           
 

Uses of JasperPrint in net.sf.jasperreports.j2ee.servlets
 

Methods in net.sf.jasperreports.j2ee.servlets that return types with arguments of type JasperPrint
static java.util.List<JasperPrint> BaseHttpServlet.getJasperPrintList(javax.servlet.http.HttpServletRequest request)
           
 

Uses of JasperPrint in net.sf.jasperreports.swing
 

Methods in net.sf.jasperreports.swing that return JasperPrint
 JasperPrint JRViewerController.getJasperPrint()
           
 

Methods in net.sf.jasperreports.swing with parameters of type JasperPrint
 void JRViewerController.loadReport(JasperPrint jrPrint)
           
 

Constructors in net.sf.jasperreports.swing with parameters of type JasperPrint
JRViewer(JasperPrint jrPrint)
           
JRViewer(JasperPrint jrPrint, java.util.Locale locale)
           
JRViewer(JasperPrint jrPrint, java.util.Locale locale, java.util.ResourceBundle resBundle)
           
JRViewer(JasperReportsContext jasperReportsContext, JasperPrint jrPrint, java.util.Locale locale, java.util.ResourceBundle resBundle)
           
 

Uses of JasperPrint in net.sf.jasperreports.view
 

Methods in net.sf.jasperreports.view with parameters of type JasperPrint
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)
           
static void JasperViewer.viewReport(JasperReportsContext jasperReportsContext, JasperPrint jasperPrint, boolean isExitOnClose)
           
static void JasperViewer.viewReport(JasperReportsContext jasperReportsContext, JasperPrint jasperPrint, boolean isExitOnClose, java.util.Locale locale, java.util.ResourceBundle resBundle)
           
 

Constructors in net.sf.jasperreports.view with parameters of type JasperPrint
JasperViewer(JasperPrint jasperPrint)
           
JasperViewer(JasperPrint jasperPrint, boolean isExitOnClose)
           
JasperViewer(JasperPrint jasperPrint, boolean isExitOnClose, java.util.Locale locale)
           
JasperViewer(JasperReportsContext jasperReportsContext, JasperPrint jasperPrint, boolean isExitOnClose)
           
JasperViewer(JasperReportsContext jasperReportsContext, JasperPrint jasperPrint, boolean isExitOnClose, java.util.Locale locale, java.util.ResourceBundle resBundle)
           
JRViewer(JasperPrint jrPrint)
           
JRViewer(JasperPrint jrPrint, java.util.Locale locale)
           
JRViewer(JasperPrint jrPrint, java.util.Locale locale, java.util.ResourceBundle resBundle)
           
JRViewer(JasperReportsContext jasperReportsContext, JasperPrint jrPrint, java.util.Locale locale, java.util.ResourceBundle resBundle)
           
 

Uses of JasperPrint in net.sf.jasperreports.view.save
 

Methods in net.sf.jasperreports.view.save with parameters of type JasperPrint
 void JRPrintSaveContributor.save(JasperPrint jasperPrint, java.io.File file)
           
 void JRRtfSaveContributor.save(JasperPrint jasperPrint, java.io.File file)
           
 void JRHtmlSaveContributor.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 JRMultipleSheetsXlsSaveContributor.save(JasperPrint jasperPrint, java.io.File file)
           
 void JRPdfSaveContributor.save(JasperPrint jasperPrint, java.io.File file)
           
 void JRSingleSheetXlsSaveContributor.save(JasperPrint jasperPrint, java.io.File file)
           
 void JROdtSaveContributor.save(JasperPrint jasperPrint, java.io.File file)
           
 void JRCsvSaveContributor.save(JasperPrint jasperPrint, java.io.File file)
           
 void JRDocxSaveContributor.save(JasperPrint jasperPrint, java.io.File file)
           
 

Uses of JasperPrint in net.sf.jasperreports.web.servlets
 

Methods in net.sf.jasperreports.web.servlets that return JasperPrint
 JasperPrint JasperPrintAccessor.getFinalJasperPrint()
          Returns the generated report, ensuring before that the report generation has ended.
 JasperPrint AsyncJasperPrintAccessor.getFinalJasperPrint()
           
 JasperPrint SimpleJasperPrintAccessor.getFinalJasperPrint()
           
 JasperPrint JasperPrintAccessor.getJasperPrint()
          Returns the generated report.
 JasperPrint AsyncJasperPrintAccessor.getJasperPrint()
           
 JasperPrint SimpleJasperPrintAccessor.getJasperPrint()
           
 

Methods in net.sf.jasperreports.web.servlets with parameters of type JasperPrint
 void AsyncJasperPrintAccessor.pageGenerated(JasperPrint jasperPrint, int pageIndex)
           
 void AsyncJasperPrintAccessor.pageUpdated(JasperPrint jasperPrint, int pageIndex)
           
 void AsyncJasperPrintAccessor.reportFinished(JasperPrint jasperPrint)
           
 

Constructors in net.sf.jasperreports.web.servlets with parameters of type JasperPrint
SimpleJasperPrintAccessor(JasperPrint jasperPrint)
          Create a report accessor.
 



© 2001-2010 Jaspersoft Corporation www.jaspersoft.com