Class JasperDesign
- java.lang.Object
-
- net.sf.jasperreports.engine.base.JRBaseReport
-
- net.sf.jasperreports.engine.design.JasperDesign
-
- All Implemented Interfaces:
Serializable,JRChangeEventsSupport,JRDefaultStyleProvider,JRIdentifiable,JRPropertiesHolder,JRReport
public class JasperDesign extends JRBaseReport
JasperDesign is used for in-memory representation of a report design.The class contains all report properties and report elements inherited from the
JRReportinterface in their design time state.All its instances are subject to compilation before being used for filling and report generation. These instances are the raw material that the JasperReports library uses to generate reports. Such instances are usually obtained:
- by parsing the JRXML report template files using the library's internal XML-parsing utility classes.
- by applications that use JasperReports through API calls if working with JRXML files is not an option.
The first option for creating report designs relies on editing the JRXML files and using them with the
JasperCompileManagerin order to prepare them for filling with data. Because they are well structured and are validated against a public XSD when parsed, these files can be easily edited using simple editors or specialized XML editors.The second option is recommended only in case the parent application that uses JasperReports inside the reporting module needs to create report templates at runtime. In most cases this is not needed because the report templates do not need to change with every report execution, and hence static report templates could be used. Only the data used to fill these static report templates is dynamic.
However, there are cases when the actual report template is the result of some user input. The parent application might supply its users with a set of options when launching the reports that might take the form of some simplified report designer or wizard. In such cases, the actual report layout is not known or is not complete at design time, and can only be put together after the user's input is received.
The most common use case scenario that requires dynamically built or ad hoc report templates (as we call them) is one in which the columns that are going to be present in a table-like report layout are not known at design time. Instead, the user will give the number of columns and their order inside the desired report at runtime.
Developers have to make sure that the applications they create really need ad hoc reports and cannot rely solely on static report templates. Since dynamically built report templates have to be compiled on the fly at runtime, they can result in a certain loss of performance.
- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
- See Also:
JRReport,JRBaseReport,JRXmlLoader, Serialized Form
-
-
Field Summary
-
Fields inherited from class net.sf.jasperreports.engine.base.JRBaseReport
background, bottomMargin, columnCount, columnDirection, columnFooter, columnHeader, columnSpacing, columnWidth, datasets, defaultStyle, detailSection, formatFactoryClass, ignorePagination, importsSet, isFloatColumnFooter, isSummaryNewPage, isSummaryWithPageHeaderAndFooter, isTitleNewPage, language, lastPageFooter, leftMargin, mainDataset, name, noData, orientationValue, pageFooter, pageHeader, pageHeight, pageWidth, printOrderValue, PROPERTY_SECTION_TYPE, PROPERTY_WHEN_NO_DATA_TYPE, rightMargin, sectionType, styleResolver, styles, summary, templates, title, topMargin, whenNoDataTypeValue
-
Fields inherited from interface net.sf.jasperreports.engine.JRReport
CONFIG_PROPERTY_WHEN_NO_DATA_TYPE, LANGUAGE_GROOVY, LANGUAGE_JAVA
-
-
Constructor Summary
Constructors Constructor Description JasperDesign()Constructs a JasperDesign object and fills it with the default variables and parameters.JasperDesign(JasperReportsContext context)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddDataset(int index, JRDesignDataset dataset)Inserts a sub dataset at specified position into the report.voidaddDataset(JRDesignDataset dataset)Adds a sub dataset to the report.voidaddField(JRField field)voidaddGroup(JRDesignGroup group)Gets a map of report groups.voidaddImport(String value)Adds an import (needed if report expression require additional classes in order to compile).voidaddParameter(JRParameter parameter)Adds a report parameter.voidaddPropertyExpression(DatasetPropertyExpression propertyExpression)voidaddScriptlet(JRScriptlet scriptlet)Adds a report scriplet.voidaddSortField(JRSortField sortField)voidaddStyle(int index, JRStyle style)Inserts a report style, that can be referenced by report elements, at specified position.voidaddStyle(JRStyle style)Adds a report style, that can be referenced by report elements.voidaddTemplate(int index, JRReportTemplate template)Inserts a report template at specified position.voidaddTemplate(JRReportTemplate template)Adds a report template.voidaddVariable(JRDesignVariable variable)protected List<JRCrosstab>getCrosstabs()Map<String,JRDataset>getDatasetMap()Returns the sub datasets of the report indexed by name.JRDataset[]getDatasets()Returns the datasets of this report.List<JRDataset>getDatasetsList()Returns the list of report sub datasets.Collection<JRExpression>getExpressions()Returns a collection of all report expressions.List<JRField>getFieldsList()Gets a list of report fields.Map<String,JRField>getFieldsMap()Gets a map of report fields.JRExpressiongetFilterExpression()Returns the main dataset filter expression.List<JRGroup>getGroupsList()Gets an array of report groups.Map<String,JRGroup>getGroupsMap()Gets a list of report groups.JRDesignDatasetgetMainDesignDataset()Returns the main report dataset.List<JRParameter>getParametersList()Gets a list of report parameters (including built-in ones).Map<String,JRParameter>getParametersMap()Gets a map of report parameters (including built-in ones).List<DatasetPropertyExpression>getPropertyExpressionsList()List<JRScriptlet>getScriptletsList()Gets a list of report scriptlets (excluding the one specified by scriptletClass).Map<String,JRScriptlet>getScriptletsMap()Gets a map of report scriptlets (excluding the one specified by scriptletClass).List<JRSortField>getSortFieldsList()Gets a list of sort report fields.JRStyle[]getStyles()Gets an array of report level styles.List<JRStyle>getStylesList()Gets a list of report level styles.Map<String,JRStyle>getStylesMap()JRReportTemplate[]getTemplates()Returns the list of report templates.List<JRReportTemplate>getTemplatesList()Returns the list of report templates defined in the report.List<JRVariable>getVariablesList()Gets a list of report variables.Map<String,JRVariable>getVariablesMap()Gets a map of report variables.booleanhasUUID()Determines whether the report has an existing unique identifier.voidpreprocess()Performs preliminary processing and calculations prior to compilation.JRDatasetremoveDataset(String datasetName)Removes a sub dataset from the report.JRDatasetremoveDataset(JRDataset dataset)Removes a sub dataset from the report.JRFieldremoveField(String fieldName)JRFieldremoveField(JRField field)JRGroupremoveGroup(String groupName)Removes a new group from the report design.JRGroupremoveGroup(JRGroup group)voidremoveImport(String value)Removes an import.JRParameterremoveParameter(String parameterName)Removes a report parameter, based on its name.JRParameterremoveParameter(JRParameter parameter)Removes a report parameter.DatasetPropertyExpressionremovePropertyExpression(String name)voidremovePropertyExpression(DatasetPropertyExpression propertyExpression)JRScriptletremoveScriptlet(String scriptletName)Removes a report scriptlet, based on its name.JRScriptletremoveScriptlet(JRScriptlet scriptlet)Removes a report scriptlet.JRSortFieldremoveSortField(JRSortField sortField)JRStyleremoveStyle(String styleName)Removes a report style from the list, based on the style name.JRStyleremoveStyle(JRStyle style)Removes a report style from the list.booleanremoveTemplate(JRReportTemplate template)Removes a report template.JRVariableremoveVariable(String variableName)JRVariableremoveVariable(JRVariable variable)voidresetDefaultStyle()voidsetBackground(JRBand background)Sets the background band.protected voidsetBandOrigin(JRBand band, BandTypeEnum type)voidsetBottomMargin(int bottomMargin)Sets the top margin.voidsetColumnCount(int columnCount)Specifies the number of report columns.voidsetColumnDirection(RunDirectionEnum columnDirection)Sets the column direction.voidsetColumnFooter(JRBand columnFooter)Sets the column footer band.voidsetColumnHeader(JRBand columnHeader)Sets the column header band.voidsetColumnSpacing(int columnSpacing)Sets the spacing between columns.voidsetColumnWidth(int columnWidth)Sets the column width.voidsetDefaultStyle(JRStyle style)voidsetFilterExpression(JRExpression expression)Sets the main dataset filter expression.voidsetFloatColumnFooter(boolean isFloatColumnFooter)Flag used to specify if the column footer section should be printed at the bottom of the column or if it should immediately follow the last detail or group footer printed on the current column.voidsetFormatFactoryClass(String formatFactoryClass)voidsetIgnorePagination(boolean ignorePagination)Sets the value of the ignore pagination flag.voidsetLanguage(String language)Specifies the language used for report expressions (Java or Groovy).voidsetLastPageFooter(JRBand lastPageFooter)Sets the last page footer band.voidsetLeftMargin(int leftMargin)Sets the left margin.voidsetMainDataset(JRDesignDataset dataset)Sets the main report dataset.voidsetName(String name)Sets the report name.voidsetNoData(JRBand noData)Sets the noData band.voidsetOrientation(OrientationEnum orientationValue)Sets the report orientation.voidsetPageFooter(JRBand pageFooter)Sets the page footer band.voidsetPageHeader(JRBand pageHeader)Sets the page header band.voidsetPageHeight(int pageHeight)Sets page height (including margins etc.).voidsetPageWidth(int pageWidth)Sets page width (including margins etc.).voidsetPrintOrder(PrintOrderEnum printOrderValue)Sets the print order.voidsetQuery(JRDesignQuery query)Specifies the report query.voidsetResourceBundle(String resourceBundle)Sets the base name of the report associated resource bundle.voidsetRightMargin(int rightMargin)Sets the right margin.voidsetScriptletClass(String scriptletClass)protected voidsetSectionOrigin(JRSection section, BandTypeEnum type)voidsetSummary(JRBand summary)Sets the summary band.voidsetSummaryNewPage(boolean isSummaryNewPage)Flag used to specify if the summary section should be printed on a separate last page.voidsetSummaryWithPageHeaderAndFooter(boolean isSummaryWithPageHeaderAndFooter)Flag used to specify if the summary section should be accompanied by the page header and footer.voidsetTitle(JRBand title)Sets the title band.voidsetTitleNewPage(boolean isTitleNewPage)Flag used to specify if the title section should be printed on a separate initial page.voidsetTopMargin(int topMargin)Sets the top margin.voidsetUUID(UUID uuid)Sets the unique identifier for the report.-
Methods inherited from class net.sf.jasperreports.engine.base.JRBaseReport
copyTemplates, getAllBands, getBackground, getBottomMargin, getColumnCount, getColumnDirection, getColumnFooter, getColumnHeader, getColumnSpacing, getColumnWidth, getDefaultStyle, getDetailSection, getEventSupport, getFields, getFormatFactoryClass, getGroups, getImports, getLanguage, getLastPageFooter, getLeftMargin, getMainDataset, getName, getNoData, getOrientationValue, getPageFooter, getPageHeader, getPageHeight, getPageWidth, getParameters, getParentProperties, getPrintOrderValue, getPropertiesMap, getProperty, getPropertyExpressions, getPropertyNames, getQuery, getResourceBundle, getRightMargin, getScriptletClass, getScriptlets, getSectionType, getSortFields, getStyleResolver, getSummary, getTitle, getTopMargin, getUUID, getVariables, getWhenNoDataTypeValue, getWhenResourceMissingTypeValue, hasProperties, isFloatColumnFooter, isIgnorePagination, isSummaryNewPage, isSummaryWithPageHeaderAndFooter, isTitleNewPage, removeProperty, setJasperReportsContext, setProperty, setSectionType, setWhenNoDataType, setWhenResourceMissingType
-
-
-
-
Field Detail
-
EXCEPTION_MESSAGE_KEY_DUPLICATE_DATASET
public static final String EXCEPTION_MESSAGE_KEY_DUPLICATE_DATASET
- See Also:
- Constant Field Values
-
EXCEPTION_MESSAGE_KEY_DUPLICATE_REPORT_STYLE
public static final String EXCEPTION_MESSAGE_KEY_DUPLICATE_REPORT_STYLE
- See Also:
- Constant Field Values
-
PROPERTY_BACKGROUND
public static final String PROPERTY_BACKGROUND
- See Also:
- Constant Field Values
-
PROPERTY_BOTTOM_MARGIN
public static final String PROPERTY_BOTTOM_MARGIN
- See Also:
- Constant Field Values
-
PROPERTY_COLUMN_COUNT
public static final String PROPERTY_COLUMN_COUNT
- See Also:
- Constant Field Values
-
PROPERTY_COLUMN_FOOTER
public static final String PROPERTY_COLUMN_FOOTER
- See Also:
- Constant Field Values
-
PROPERTY_COLUMN_HEADER
public static final String PROPERTY_COLUMN_HEADER
- See Also:
- Constant Field Values
-
PROPERTY_COLUMN_SPACING
public static final String PROPERTY_COLUMN_SPACING
- See Also:
- Constant Field Values
-
PROPERTY_COLUMN_WIDTH
public static final String PROPERTY_COLUMN_WIDTH
- See Also:
- Constant Field Values
-
PROPERTY_DATASETS
public static final String PROPERTY_DATASETS
- See Also:
- Constant Field Values
-
PROPERTY_DEFAULT_FONT
public static final String PROPERTY_DEFAULT_FONT
- See Also:
- Constant Field Values
-
PROPERTY_DEFAULT_STLYE
public static final String PROPERTY_DEFAULT_STLYE
- See Also:
- Constant Field Values
-
PROPERTY_DETAIL
public static final String PROPERTY_DETAIL
- See Also:
- Constant Field Values
-
PROPERTY_FLOAT_COLUMN_FOOTER
public static final String PROPERTY_FLOAT_COLUMN_FOOTER
- See Also:
- Constant Field Values
-
PROPERTY_FONTS
public static final String PROPERTY_FONTS
- See Also:
- Constant Field Values
-
PROPERTY_FORMAT_FACTORY_CLASS
public static final String PROPERTY_FORMAT_FACTORY_CLASS
- See Also:
- Constant Field Values
-
PROPERTY_IGNORE_PAGINATION
public static final String PROPERTY_IGNORE_PAGINATION
- See Also:
- Constant Field Values
-
PROPERTY_IMPORTS
public static final String PROPERTY_IMPORTS
- See Also:
- Constant Field Values
-
PROPERTY_LANGUAGE
public static final String PROPERTY_LANGUAGE
- See Also:
- Constant Field Values
-
PROPERTY_LAST_PAGE_FOOTER
public static final String PROPERTY_LAST_PAGE_FOOTER
- See Also:
- Constant Field Values
-
PROPERTY_LEFT_MARGIN
public static final String PROPERTY_LEFT_MARGIN
- See Also:
- Constant Field Values
-
PROPERTY_MAIN_DATASET
public static final String PROPERTY_MAIN_DATASET
- See Also:
- Constant Field Values
-
PROPERTY_NAME
public static final String PROPERTY_NAME
- See Also:
- Constant Field Values
-
PROPERTY_NO_DATA
public static final String PROPERTY_NO_DATA
- See Also:
- Constant Field Values
-
PROPERTY_ORIENTATION
public static final String PROPERTY_ORIENTATION
- See Also:
- Constant Field Values
-
PROPERTY_PAGE_FOOTER
public static final String PROPERTY_PAGE_FOOTER
- See Also:
- Constant Field Values
-
PROPERTY_PAGE_HEADER
public static final String PROPERTY_PAGE_HEADER
- See Also:
- Constant Field Values
-
PROPERTY_PAGE_HEIGHT
public static final String PROPERTY_PAGE_HEIGHT
- See Also:
- Constant Field Values
-
PROPERTY_PAGE_WIDTH
public static final String PROPERTY_PAGE_WIDTH
- See Also:
- Constant Field Values
-
PROPERTY_PRINT_ORDER
public static final String PROPERTY_PRINT_ORDER
- See Also:
- Constant Field Values
-
PROPERTY_COLUMN_DIRECTION
public static final String PROPERTY_COLUMN_DIRECTION
- See Also:
- Constant Field Values
-
PROPERTY_RIGHT_MARGIN
public static final String PROPERTY_RIGHT_MARGIN
- See Also:
- Constant Field Values
-
PROPERTY_STYLES
public static final String PROPERTY_STYLES
- See Also:
- Constant Field Values
-
PROPERTY_SUMMARY
public static final String PROPERTY_SUMMARY
- See Also:
- Constant Field Values
-
PROPERTY_SUMMARY_NEW_PAGE
public static final String PROPERTY_SUMMARY_NEW_PAGE
- See Also:
- Constant Field Values
-
PROPERTY_SUMMARY_WITH_PAGE_HEADER_AND_FOOTER
public static final String PROPERTY_SUMMARY_WITH_PAGE_HEADER_AND_FOOTER
- See Also:
- Constant Field Values
-
PROPERTY_TEMPLATES
public static final String PROPERTY_TEMPLATES
- See Also:
- Constant Field Values
-
PROPERTY_TITLE
public static final String PROPERTY_TITLE
- See Also:
- Constant Field Values
-
PROPERTY_TITLE_NEW_PAGE
public static final String PROPERTY_TITLE_NEW_PAGE
- See Also:
- Constant Field Values
-
PROPERTY_TOP_MARGIN
public static final String PROPERTY_TOP_MARGIN
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
JasperDesign
public JasperDesign()
Constructs a JasperDesign object and fills it with the default variables and parameters.
-
JasperDesign
public JasperDesign(JasperReportsContext context)
-
-
Method Detail
-
setName
public void setName(String name)
Sets the report name. It is strongly recommended that the report name matches the .jrxml file name, since report compilers usually use this name for the compiled .jasper file.
-
setLanguage
public void setLanguage(String language)
Specifies the language used for report expressions (Java or Groovy). The default is Java.
-
setColumnCount
public void setColumnCount(int columnCount)
Specifies the number of report columns.
-
setPrintOrder
public void setPrintOrder(PrintOrderEnum printOrderValue)
Sets the print order. In case of multiple column reports, the engine can perform vertical or horizontal fill.- See Also:
VERTICAL,,HORIZONTAL
-
setColumnDirection
public void setColumnDirection(RunDirectionEnum columnDirection)
Sets the column direction.
-
setPageWidth
public void setPageWidth(int pageWidth)
Sets page width (including margins etc.). Default is 595.
-
setPageHeight
public void setPageHeight(int pageHeight)
Sets page height (including margins etc.). Default is 842.
-
setOrientation
public void setOrientation(OrientationEnum orientationValue)
Sets the report orientation.- See Also:
ORIENTATION_PORTRAIT,,ORIENTATION_LANDSCAPE
-
setColumnWidth
public void setColumnWidth(int columnWidth)
Sets the column width.
-
setColumnSpacing
public void setColumnSpacing(int columnSpacing)
Sets the spacing between columns.
-
setLeftMargin
public void setLeftMargin(int leftMargin)
Sets the left margin. The working space is calculated by subtracting the margins from the page width.
-
setRightMargin
public void setRightMargin(int rightMargin)
Sets the right margin. The working space is calculated by subtracting the margins from the page width.
-
setTopMargin
public void setTopMargin(int topMargin)
Sets the top margin. The working space is calculated by subtracting the margins from the page height.
-
setBottomMargin
public void setBottomMargin(int bottomMargin)
Sets the top margin. The working space is calculated by subtracting the margins from the page height.
-
setBackground
public void setBackground(JRBand background)
Sets the background band.
-
setTitle
public void setTitle(JRBand title)
Sets the title band.
-
setTitleNewPage
public void setTitleNewPage(boolean isTitleNewPage)
Flag used to specify if the title section should be printed on a separate initial page.- Parameters:
isTitleNewPage- true if the title section should be displayed on a separate initial page, false if it will be displayed on the first page along with other sections.
-
setSummary
public void setSummary(JRBand summary)
Sets the summary band.
-
setNoData
public void setNoData(JRBand noData)
Sets the noData band.
-
setSummaryNewPage
public void setSummaryNewPage(boolean isSummaryNewPage)
Flag used to specify if the summary section should be printed on a separate last page.- Parameters:
isSummaryNewPage- true if the summary section should be displayed on a separate last page, false if it will be displayed on the last page along with other sections, if there is enough space.
-
setSummaryWithPageHeaderAndFooter
public void setSummaryWithPageHeaderAndFooter(boolean isSummaryWithPageHeaderAndFooter)
Flag used to specify if the summary section should be accompanied by the page header and footer.- Parameters:
isSummaryWithPageHeaderAndFooter- true if the summary section should be displayed on pages that have the page header and footer, false if it will be displayed on pages without header and footer.
-
setFloatColumnFooter
public void setFloatColumnFooter(boolean isFloatColumnFooter)
Flag used to specify if the column footer section should be printed at the bottom of the column or if it should immediately follow the last detail or group footer printed on the current column.
-
setPageHeader
public void setPageHeader(JRBand pageHeader)
Sets the page header band.
-
setPageFooter
public void setPageFooter(JRBand pageFooter)
Sets the page footer band.
-
setLastPageFooter
public void setLastPageFooter(JRBand lastPageFooter)
Sets the last page footer band.
-
setColumnHeader
public void setColumnHeader(JRBand columnHeader)
Sets the column header band.
-
setColumnFooter
public void setColumnFooter(JRBand columnFooter)
Sets the column footer band.
-
setScriptletClass
public void setScriptletClass(String scriptletClass)
-
setFormatFactoryClass
public void setFormatFactoryClass(String formatFactoryClass)
-
setResourceBundle
public void setResourceBundle(String resourceBundle)
Sets the base name of the report associated resource bundle.
-
addImport
public void addImport(String value)
Adds an import (needed if report expression require additional classes in order to compile).
-
removeImport
public void removeImport(String value)
Removes an import.
-
resetDefaultStyle
public void resetDefaultStyle()
-
setDefaultStyle
public void setDefaultStyle(JRStyle style)
-
getStyles
public JRStyle[] getStyles()
Gets an array of report level styles. These styles can be referenced by report elements.- Specified by:
getStylesin interfaceJRReport- Overrides:
getStylesin classJRBaseReport
-
getStylesList
public List<JRStyle> getStylesList()
Gets a list of report level styles. These styles can be referenced by report elements.
-
addStyle
public void addStyle(JRStyle style) throws JRException
Adds a report style, that can be referenced by report elements.- Throws:
JRException
-
addStyle
public void addStyle(int index, JRStyle style) throws JRExceptionInserts a report style, that can be referenced by report elements, at specified position.- Throws:
JRException
-
removeStyle
public JRStyle removeStyle(String styleName)
Removes a report style from the list, based on the style name.
-
getScriptletsList
public List<JRScriptlet> getScriptletsList()
Gets a list of report scriptlets (excluding the one specified by scriptletClass).
-
getScriptletsMap
public Map<String,JRScriptlet> getScriptletsMap()
Gets a map of report scriptlets (excluding the one specified by scriptletClass).
-
addScriptlet
public void addScriptlet(JRScriptlet scriptlet) throws JRException
Adds a report scriplet.- Throws:
JRException
-
removeScriptlet
public JRScriptlet removeScriptlet(String scriptletName)
Removes a report scriptlet, based on its name.
-
addPropertyExpression
public void addPropertyExpression(DatasetPropertyExpression propertyExpression)
-
removePropertyExpression
public void removePropertyExpression(DatasetPropertyExpression propertyExpression)
-
removePropertyExpression
public DatasetPropertyExpression removePropertyExpression(String name)
-
getPropertyExpressionsList
public List<DatasetPropertyExpression> getPropertyExpressionsList()
-
removeScriptlet
public JRScriptlet removeScriptlet(JRScriptlet scriptlet)
Removes a report scriptlet.
-
getParametersList
public List<JRParameter> getParametersList()
Gets a list of report parameters (including built-in ones).
-
getParametersMap
public Map<String,JRParameter> getParametersMap()
Gets a map of report parameters (including built-in ones).
-
addParameter
public void addParameter(JRParameter parameter) throws JRException
Adds a report parameter.- Throws:
JRException
-
removeParameter
public JRParameter removeParameter(String parameterName)
Removes a report parameter, based on its name.
-
removeParameter
public JRParameter removeParameter(JRParameter parameter)
Removes a report parameter.
-
setQuery
public void setQuery(JRDesignQuery query)
Specifies the report query.
-
addField
public void addField(JRField field) throws JRException
- Throws:
JRException
-
getSortFieldsList
public List<JRSortField> getSortFieldsList()
Gets a list of sort report fields.
-
addSortField
public void addSortField(JRSortField sortField) throws JRException
- Throws:
JRException
-
removeSortField
public JRSortField removeSortField(JRSortField sortField)
-
getVariablesList
public List<JRVariable> getVariablesList()
Gets a list of report variables.
-
getVariablesMap
public Map<String,JRVariable> getVariablesMap()
Gets a map of report variables.
-
addVariable
public void addVariable(JRDesignVariable variable) throws JRException
- Throws:
JRException
-
removeVariable
public JRVariable removeVariable(String variableName)
-
removeVariable
public JRVariable removeVariable(JRVariable variable)
-
addGroup
public void addGroup(JRDesignGroup group) throws JRException
Gets a map of report groups.- Throws:
JRException
-
removeGroup
public JRGroup removeGroup(String groupName)
Removes a new group from the report design.
-
getExpressions
public Collection<JRExpression> getExpressions()
Returns a collection of all report expressions.
-
getDatasets
public JRDataset[] getDatasets()
Description copied from interface:JRReportReturns the datasets of this report.- Specified by:
getDatasetsin interfaceJRReport- Overrides:
getDatasetsin classJRBaseReport- Returns:
- the datasets of this report
-
getDatasetsList
public List<JRDataset> getDatasetsList()
Returns the list of report sub datasets.- Returns:
- list of
JRDesignDatasetobjects
-
getDatasetMap
public Map<String,JRDataset> getDatasetMap()
Returns the sub datasets of the report indexed by name.- Returns:
- the sub datasets of the report indexed by name
-
addDataset
public void addDataset(JRDesignDataset dataset) throws JRException
Adds a sub dataset to the report.- Parameters:
dataset- the dataset- Throws:
JRException
-
addDataset
public void addDataset(int index, JRDesignDataset dataset) throws JRExceptionInserts a sub dataset at specified position into the report.- Parameters:
index- the positiondataset- the dataset- Throws:
JRException
-
removeDataset
public JRDataset removeDataset(String datasetName)
Removes a sub dataset from the report.- Parameters:
datasetName- the dataset name- Returns:
- the removed dataset
-
removeDataset
public JRDataset removeDataset(JRDataset dataset)
Removes a sub dataset from the report.- Parameters:
dataset- the dataset to be removed- Returns:
- the dataset
-
getMainDesignDataset
public JRDesignDataset getMainDesignDataset()
Returns the main report dataset.- Returns:
- the main report dataset
-
setMainDataset
public void setMainDataset(JRDesignDataset dataset)
Sets the main report dataset.This method can be used as an alternative to setting the parameters, fields, etc directly on the report.
- Parameters:
dataset- the dataset
-
preprocess
public void preprocess()
Performs preliminary processing and calculations prior to compilation.
-
getCrosstabs
protected List<JRCrosstab> getCrosstabs()
-
setIgnorePagination
public void setIgnorePagination(boolean ignorePagination)
Sets the value of the ignore pagination flag.- Parameters:
ignorePagination- whether to ignore pagination when generating the report- See Also:
JRReport.isIgnorePagination()
-
getFilterExpression
public JRExpression getFilterExpression()
Returns the main dataset filter expression.- Returns:
- the main dataset filter expression
- See Also:
JRDataset.getFilterExpression()
-
setFilterExpression
public void setFilterExpression(JRExpression expression)
Sets the main dataset filter expression.- Parameters:
expression- the boolean expression to use as main dataset filter expression- See Also:
JRDesignDataset.setFilterExpression(JRExpression),JRDataset.getFilterExpression()
-
addTemplate
public void addTemplate(JRReportTemplate template)
Adds a report template.- Parameters:
template- the template to add.- See Also:
getTemplates()
-
addTemplate
public void addTemplate(int index, JRReportTemplate template)Inserts a report template at specified position.- Parameters:
index- the template position.template- the template to insert.- See Also:
getTemplates()
-
removeTemplate
public boolean removeTemplate(JRReportTemplate template)
Removes a report template.- Parameters:
template- the template to remove- Returns:
trueif and only if the template has been found and removed
-
getTemplates
public JRReportTemplate[] getTemplates()
Description copied from interface:JRReportReturns the list of report templates. A report template is an expression which resolves at runtime to atemplate. Templates include styles which can be used in the report. The order in which the templates are included in the report is important:- A style's parent must appear before the style itself.
- A style overrides styles with the same name that are placed before it. Also, report styles override templates styles with the same name.
- Specified by:
getTemplatesin interfaceJRReport- Overrides:
getTemplatesin classJRBaseReport- Returns:
- the list of report templates, or
nullif none - See Also:
JRTemplate,JRParameter.REPORT_TEMPLATES
-
getTemplatesList
public List<JRReportTemplate> getTemplatesList()
Returns the list of report templates defined in the report.- Returns:
- the list of
JRReportTemplateobjects for the report - See Also:
getTemplates(),addTemplate(JRReportTemplate)
-
setBandOrigin
protected void setBandOrigin(JRBand band, BandTypeEnum type)
-
setSectionOrigin
protected void setSectionOrigin(JRSection section, BandTypeEnum type)
-
setUUID
public void setUUID(UUID uuid)
Sets the unique identifier for the report.- Parameters:
uuid- the identifier
-
hasUUID
public boolean hasUUID()
Determines whether the report has an existing unique identifier. Note that when no existing identifier is set,JRBaseReport.getUUID()would generate and return an identifier.- Returns:
- whether the report has an externally set unique identifier
- See Also:
setUUID(UUID)
-
-