| |
|
| org.jfree.report.ReportDefinition org.jfree.report.JFreeReport
JFreeReport | public class JFreeReport extends ReportDefinition implements ReportStructureRoot(Code) | | A JFreeReport instance is used as report template to define the visual layout
of a report and to collect all data sources for the reporting. Possible data
sources are the
TableModel ,
org.jfree.report.expressions.Expression s
or
ReportParameters .
New since 0.9: Report properties contain data. They do not contain processing
objects (like the outputtarget) or attribute values. Report properties should
only contains things, which are intended for printing.
The report data source is no longer part of the report definition. It is an
extra object passed over to the report processor or generated using a report
data factory.
author: David Gilbert author: Thomas Morgner |
Constructor Summary | |
public | JFreeReport() The default constructor. |
JFreeReport | public JFreeReport()(Code) | | The default constructor. Creates an empty but fully initialized report.
|
addStyleSheet | public void addStyleSheet(StyleSheet s)(Code) | | |
clone | public Object clone() throws CloneNotSupportedException(Code) | | private ModifiableConfiguration reportConfiguration;
private ArrayList styleSheets;
private StyleSheet pageFormatStyleSheet;
private CSSPageRule pageRule;
private ReportParameters parameters;
private ReportDataFactory dataFactory;
private ResourceManager resourceManager;
private ResourceKey baseResource;
throws: CloneNotSupportedException - |
getBaseResource | public ResourceKey getBaseResource()(Code) | | |
getConfiguration | public Configuration getConfiguration()(Code) | | Returns the report configuration.
The report configuration is automatically set up when the report is first
created, and uses the global JFreeReport configuration as its parent.
the report configuration. |
getEditableConfiguration | public ModifiableConfiguration getEditableConfiguration()(Code) | | |
getResourceManager | public ResourceManager getResourceManager()(Code) | | |
getStyleSheet | public StyleSheet getStyleSheet(int i)(Code) | | |
getStyleSheetCount | public int getStyleSheetCount()(Code) | | |
removeStyleSheet | public void removeStyleSheet(StyleSheet s)(Code) | | |
setBaseResource | public void setBaseResource(ResourceKey baseResource)(Code) | | |
setResourceManager | public void setResourceManager(ResourceManager resourceManager)(Code) | | |
|
|
|