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

Packages that use JasperReport
net.sf.jasperreports.components.table.fill   
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.data Provides various report data source implementations and allows creating custom data sources. 
net.sf.jasperreports.engine.design Contains design time implementations for the library's main interfaces as well as report compiling tools. 
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.scriptlets   
net.sf.jasperreports.engine.util Utility classes. 
 

Uses of JasperReport in net.sf.jasperreports.components.table.fill
 

Methods in net.sf.jasperreports.components.table.fill that return JasperReport
protected  JasperReport FillTableSubreport.evaluateReport(byte evaluation)
           
 

Methods in net.sf.jasperreports.components.table.fill with parameters of type JasperReport
protected  JRReportCompileData FillTable.createTableReportCompileData(JasperReport parentReport, JRDataset reportSubdataset)
           
 java.lang.String TableReportCompileData.getUnitName(JasperReport jasperReport, JRCrosstab crosstab)
           
 java.lang.String TableReportCompileData.getUnitName(JasperReport jasperReport, JRDataset dataset)
           
 

Constructors in net.sf.jasperreports.components.table.fill with parameters of type JasperReport
FillTableSubreport(JRBaseFiller filler, JRSubreport subreport, JRFillObjectFactory factory, JasperReport tableReport, java.util.Map<JRExpression,BuiltinExpressionEvaluator> builtinEvaluators)
           
TableReportCompileData(JasperReport originialReport)
           
 

Uses of JasperReport in net.sf.jasperreports.engine
 

Methods in net.sf.jasperreports.engine that return JasperReport
static JasperReport JasperManager.compileReport(java.io.InputStream inputStream)
          Deprecated. Replaced by JasperCompileManager.compileReport(InputStream).
static JasperReport JasperCompileManager.compileReport(java.io.InputStream inputStream)
          Compiles the serialized report design object read from the supplied input stream and returns the generated compiled report design object.
static JasperReport JasperManager.compileReport(JasperDesign jasperDesign)
          Deprecated. Replaced by JasperCompileManager.compileReport(JasperDesign).
static JasperReport JasperCompileManager.compileReport(JasperDesign jasperDesign)
          Compiles the report design object received as parameter and returns the generated compiled report design object.
static JasperReport JasperManager.compileReport(java.lang.String sourceFileName)
          Deprecated. Replaced by JasperCompileManager.compileReport(String).
static JasperReport JasperCompileManager.compileReport(java.lang.String sourceFileName)
          Compiles the XML report design file received as parameter, and returns the compiled report design object.
static JasperReport JasperManager.loadReport(java.io.InputStream inputStream)
          Deprecated. Use JRLoader.loadObject(InputStream) with the appropriate cast.
static JasperReport JasperManager.loadReport(java.lang.String fileName)
          Deprecated. Use JRLoader.loadObject(String) with the appropriate cast.
 

Methods in net.sf.jasperreports.engine with parameters of type JasperReport
 JRDataSource JRDataSourceProvider.create(JasperReport report)
          Creates and returns a new instance of the provided data source.
static JasperPrint JasperFillManager.fillReport(JasperReport jasperReport, java.util.Map parameters)
          Fills the compiled report design supplied as the first parameter and returns the generated report object.
static JasperPrint JasperManager.fillReport(JasperReport jasperReport, java.util.Map parameters, java.sql.Connection conn)
          Deprecated. Replaced by JasperFillManager.fillReport(JasperReport, Map, Connection).
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 JasperManager.fillReport(JasperReport jasperReport, java.util.Map parameters, JRDataSource jrDataSource)
          Deprecated. Replaced by JasperFillManager.fillReport(JasperReport, Map, JRDataSource).
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 void JasperFillManager.fillReportToFile(JasperReport jasperReport, java.lang.String destFileName, java.util.Map parameters)
          Fills the compiled report design received as the first parameter and places the result in the file specified by the second parameter.
static void JasperManager.fillReportToFile(JasperReport jasperReport, java.lang.String destFileName, java.util.Map parameters, java.sql.Connection conn)
          Deprecated. Replaced by JasperFillManager.fillReportToFile(JasperReport, String, Map, Connection).
static void JasperFillManager.fillReportToFile(JasperReport jasperReport, java.lang.String destFileName, java.util.Map parameters, java.sql.Connection connection)
          Fills the compiled report design received as the first parameter and places the result in the file specified by the second parameter.
static void JasperManager.fillReportToFile(JasperReport jasperReport, java.lang.String destFileName, java.util.Map parameters, JRDataSource jrDataSource)
          Deprecated. Replaced by JasperFillManager.fillReportToFile(JasperReport, String, Map, JRDataSource).
static void JasperFillManager.fillReportToFile(JasperReport jasperReport, java.lang.String destFileName, java.util.Map parameters, JRDataSource dataSource)
          Fills the compiled report design received as the first parameter and places the result in the file specified by the second parameter.
static void JasperFillManager.fillReportToStream(JasperReport jasperReport, java.io.OutputStream outputStream, java.util.Map parameters)
          Fills the compiled report design supplied as the first parameter and writes the generated report object to the output stream specified by the second parameter.
static void JasperManager.fillReportToStream(JasperReport jasperReport, java.io.OutputStream outputStream, java.util.Map parameters, java.sql.Connection conn)
          Deprecated. Replaced by JasperFillManager.fillReportToStream(JasperReport, OutputStream, Map, Connection).
static void JasperFillManager.fillReportToStream(JasperReport jasperReport, java.io.OutputStream outputStream, java.util.Map parameters, java.sql.Connection connection)
          Fills the compiled report design supplied as the first parameter and writes the generated report object to the output stream specified by the second parameter.
static void JasperManager.fillReportToStream(JasperReport jasperReport, java.io.OutputStream outputStream, java.util.Map parameters, JRDataSource jrDataSource)
          Deprecated. Replaced by JasperFillManager.fillReportToStream(JasperReport, OutputStream, Map, JRDataSource).
static void JasperFillManager.fillReportToStream(JasperReport jasperReport, java.io.OutputStream outputStream, java.util.Map parameters, JRDataSource dataSource)
          Fills the compiled report design supplied as the first parameter and writes the generated report object to the output stream specified by the second parameter.
 JRField[] JRDataSourceProvider.getFields(JasperReport report)
          Returns the fields that are available from the data source.
static JREvaluator JasperCompileManager.loadEvaluator(JasperReport jasperReport)
           
static JREvaluator JasperCompileManager.loadEvaluator(JasperReport jasperReport, JRCrosstab crosstab)
           
static JREvaluator JasperCompileManager.loadEvaluator(JasperReport jasperReport, JRDataset dataset)
           
static byte[] JasperRunManager.runReportToPdf(JasperReport jasperReport, java.util.Map parameters)
          Fills a report and returns byte array object containing the report in PDF format.
static byte[] JasperManager.runReportToPdf(JasperReport jasperReport, java.util.Map parameters, java.sql.Connection conn)
          Deprecated. Replaced by JasperRunManager.runReportToPdf(JasperReport, Map, Connection).
static byte[] JasperRunManager.runReportToPdf(JasperReport jasperReport, java.util.Map parameters, java.sql.Connection conn)
          Fills a report and returns byte array object containing the report in PDF format.
static byte[] JasperManager.runReportToPdf(JasperReport jasperReport, java.util.Map parameters, JRDataSource jrDataSource)
          Deprecated. Replaced by JasperRunManager.runReportToPdf(JasperReport, Map, JRDataSource).
static byte[] JasperRunManager.runReportToPdf(JasperReport jasperReport, java.util.Map parameters, JRDataSource jrDataSource)
          Fills a report and returns byte array object containing the report in PDF format.
 

Uses of JasperReport in net.sf.jasperreports.engine.data
 

Methods in net.sf.jasperreports.engine.data with parameters of type JasperReport
 JRDataSource JRCsvDataSourceProvider.create(JasperReport report)
           
 JRField[] JRCsvDataSourceProvider.getFields(JasperReport report)
           
 JRField[] JRAbstractBeanDataSourceProvider.getFields(JasperReport report)
           
 

Uses of JasperReport in net.sf.jasperreports.engine.design
 

Methods in net.sf.jasperreports.engine.design that return JasperReport
 JasperReport JRCompiler.compileReport(JasperDesign jasperDesign)
          Compiles a report design.
 JasperReport JRDefaultCompiler.compileReport(JasperDesign jasperDesign)
          Deprecated. Replaced by JasperCompileManager.compileReport(JasperDesign).
 JasperReport JRAbstractCompiler.compileReport(JasperDesign jasperDesign)
           
 

Methods in net.sf.jasperreports.engine.design with parameters of type JasperReport
 java.lang.String JRReportCompileData.getUnitName(JasperReport jasperReport, JRCrosstab crosstab)
           
static java.lang.String JRAbstractCompiler.getUnitName(JasperReport report, JRCrosstab crosstab)
          Returns the name of the expression evaluator unit for a crosstab of a report.
 java.lang.String JRReportCompileData.getUnitName(JasperReport jasperReport, JRDataset dataset)
           
static java.lang.String JRAbstractCompiler.getUnitName(JasperReport report, JRDataset dataset)
          Returns the name of the expression evaluator unit for a dataset of a report.
 JREvaluator JRCompiler.loadEvaluator(JasperReport jasperReport)
          Loads the evaluator for a report's main dataset.
 JREvaluator JRDefaultCompiler.loadEvaluator(JasperReport jasperReport)
          Deprecated. Replaced by JasperCompileManager.loadEvaluator(JasperReport).
 JREvaluator JRAbstractCompiler.loadEvaluator(JasperReport jasperReport)
           
 JREvaluator JRCompiler.loadEvaluator(JasperReport jasperReport, JRCrosstab crosstab)
          Loads a expression evaluator class for a crosstab of a report.
 JREvaluator JRDefaultCompiler.loadEvaluator(JasperReport jasperReport, JRCrosstab crosstab)
          Deprecated. Replaced by JasperCompileManager.loadEvaluator(JasperReport, JRCrosstab).
 JREvaluator JRAbstractCompiler.loadEvaluator(JasperReport jasperReport, JRCrosstab crosstab)
           
 JREvaluator JRCompiler.loadEvaluator(JasperReport jasperReport, JRDataset dataset)
          Loads a expression evaluator class for a dataset of a report.
 JREvaluator JRDefaultCompiler.loadEvaluator(JasperReport jasperReport, JRDataset dataset)
          Deprecated. Replaced by JasperCompileManager.loadEvaluator(JasperReport, JRDataset).
 JREvaluator JRAbstractCompiler.loadEvaluator(JasperReport jasperReport, JRDataset dataset)
           
 

Uses of JasperReport in net.sf.jasperreports.engine.fill
 

Fields in net.sf.jasperreports.engine.fill declared as JasperReport
protected  JasperReport AsynchronousFillHandle.jasperReport
           
protected  JasperReport JRBaseFiller.jasperReport
          The report.
 

Methods in net.sf.jasperreports.engine.fill that return JasperReport
protected  JasperReport JRFillSubreport.evaluateReport(byte evaluation)
           
 JasperReport JRBaseFiller.getJasperReport()
          Returns the report.
 JasperReport JRFillContext.getLoadedSubreport(java.lang.Object source)
          Gets a cached subreport.
 

Methods in net.sf.jasperreports.engine.fill with parameters of type JasperReport
 void JRFillDataset.createCalculator(JasperReport jasperReport)
          Creates the calculator
protected static JRCalculator JRFillDataset.createCalculator(JasperReport jasperReport, JRDataset dataset)
           
static JRBaseFiller JRFiller.createFiller(JasperReport jasperReport)
           
static AsynchronousFillHandle AsynchronousFillHandle.createHandle(JasperReport jasperReport, java.util.Map parameters)
          Creates an asychronous filling handle.
static AsynchronousFillHandle AsynchronousFillHandle.createHandle(JasperReport jasperReport, java.util.Map parameters, java.sql.Connection conn)
          Creates an asychronous filling handle.
static AsynchronousFillHandle AsynchronousFillHandle.createHandle(JasperReport jasperReport, java.util.Map parameters, JRDataSource dataSource)
          Creates an asychronous filling handle.
static java.util.Map JRParameterDefaultValuesEvaluator.evaluateParameterDefaultValues(JasperReport report, java.util.Map initialParameters)
          Evaluates the default values for the parameters of a report.
static JasperPrint JRFiller.fillReport(JasperReport jasperReport, java.util.Map parameters)
          Fills a report.
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)
           
protected  void JRFillCrosstab.loadEvaluator(JasperReport jasperReport)
           
 void JRFillContext.registerLoadedSubreport(java.lang.Object source, JasperReport subreport)
          Registers a subreport loaded from a source.
 

Constructors in net.sf.jasperreports.engine.fill with parameters of type JasperReport
AsynchronousFillHandle(JasperReport jasperReport, java.util.Map parameters)
           
AsynchronousFillHandle(JasperReport jasperReport, java.util.Map parameters, java.sql.Connection conn)
           
AsynchronousFillHandle(JasperReport jasperReport, java.util.Map parameters, JRDataSource dataSource)
           
AsynchronousFillHandle(JasperReport jasperReport, java.util.Map parameters, JRDataSource dataSource, java.sql.Connection conn)
           
JRBaseFiller(JasperReport jasperReport, DatasetExpressionEvaluator initEvaluator, JRFillSubreport parentElement)
           
JRBaseFiller(JasperReport jasperReport, JREvaluator initEvaluator, JRFillSubreport parentElement)
           
JRHorizontalFiller(JasperReport jasperReport)
           
JRHorizontalFiller(JasperReport jasperReport, DatasetExpressionEvaluator evaluator, JRFillSubreport parentElement)
           
JRHorizontalFiller(JasperReport jasperReport, JREvaluator evaluator, JRFillSubreport parentElement)
           
JRHorizontalFiller(JasperReport jasperReport, JRFillSubreport parentElement)
           
JRVerticalFiller(JasperReport jasperReport)
           
JRVerticalFiller(JasperReport jasperReport, DatasetExpressionEvaluator evaluator, JRFillSubreport parentElement)
           
JRVerticalFiller(JasperReport jasperReport, JREvaluator evaluator, JRFillSubreport parentElement)
           
JRVerticalFiller(JasperReport jasperReport, JRFillSubreport parentElement)
           
 

Uses of JasperReport in net.sf.jasperreports.engine.scriptlets
 

Methods in net.sf.jasperreports.engine.scriptlets that return JasperReport
 JasperReport ScriptletFactoryContext.getJasperReport()
          Returns the JasperReport object for this context.
 

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

Methods in net.sf.jasperreports.engine.util with parameters of type JasperReport
static JRDataset JRReportUtils.findSubdataset(JRDatasetRun datasetRun, JasperReport report)
           
 



Copyright © 2011. All Rights Reserved.