| |
|
| java.lang.Object net.sf.jasperreports.engine.design.JRReportCompileData
JRReportCompileData | public class JRReportCompileData implements Serializable(Code) | | Structure used to hold a report's expression evaluator compile data.
An instantce consists of expression evaluators for the main report dataset
and for sub datasets.
author: Lucian Chirita (lucianc@users.sourceforge.net) version: $Id: JRReportCompileData.java 1229 2006-04-19 10:27:35Z teodord $ See Also: net.sf.jasperreports.engine.JasperReport.getCompileData |
JRReportCompileData | public JRReportCompileData()(Code) | | Default constructor.
|
getMainDatasetCompileData | public Serializable getMainDatasetCompileData()(Code) | | Returns the compile data for the main dataset.
the compile data for the main dataset |
setCrosstabCompileData | public void setCrosstabCompileData(int crosstabId, Serializable compileData)(Code) | | Sets the compile data for a crosstab.
Parameters: crosstabId - the generated crosstab Id, which will be used to retreive the crosstab compile data at fill time. Parameters: compileData - the compile data |
setDatasetCompileData | public void setDatasetCompileData(JRDataset dataset, Serializable compileData)(Code) | | Sets the compile data for a dataset.
Parameters: dataset - the dataset Parameters: compileData - the compile data |
setMainDatasetCompileData | public void setMainDatasetCompileData(Serializable compileData)(Code) | | Sets the main dataset compile data.
Parameters: compileData - the main dataset compile data |
|
|
|