Package | Description |
---|---|
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.base |
Contains base implementations for the library's main interfaces.
|
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).
|
Modifier and Type | Method and Description |
---|---|
JRScriptlet[] |
TableReportDataset.getScriptlets() |
JRScriptlet[] |
TableReport.getScriptlets() |
Modifier and Type | Method and Description |
---|---|
JRScriptlet[] |
JRReport.getScriptlets() |
JRScriptlet[] |
JRDataset.getScriptlets()
Returns the dataset's scriptlets.
|
Modifier and Type | Class and Description |
---|---|
class |
JRBaseScriptlet |
Modifier and Type | Field and Description |
---|---|
protected JRScriptlet[] |
JRBaseDataset.scriptlets |
Modifier and Type | Method and Description |
---|---|
JRScriptlet[] |
JRBaseReport.getScriptlets()
Gets an array of report scriptlets (excluding the scriptletClass one).
|
JRScriptlet[] |
JRBaseDataset.getScriptlets() |
Modifier and Type | Method and Description |
---|---|
protected JRBaseScriptlet |
JRBaseObjectFactory.getScriptlet(JRScriptlet scriptlet)
public JRFont getFont(JRFont font)
{
JRBaseFont baseFont = null;
if (font != null)
{
baseFont = (JRBaseFont)get(font);
if (baseFont == null)
{
baseFont =
new JRBaseFont(
defaultStyleProvider,
getReportFont(font.getReportFont()),
font
);
put(font, baseFont);
}
}
return baseFont;
}
/**
|
Constructor and Description |
---|
JRBaseScriptlet(JRScriptlet scriptlet,
JRBaseObjectFactory factory) |
Modifier and Type | Class and Description |
---|---|
class |
JRDesignScriptlet |
Modifier and Type | Method and Description |
---|---|
JRScriptlet[] |
JRDesignDataset.getScriptlets() |
JRScriptlet |
JasperDesign.removeScriptlet(JRScriptlet scriptlet)
Removes a report scriptlet.
|
JRScriptlet |
JRDesignDataset.removeScriptlet(JRScriptlet scriptlet)
Removes a scriptlet from the dataset.
|
JRScriptlet |
JasperDesign.removeScriptlet(java.lang.String scriptletName)
Removes a report scriptlet, based on its name.
|
JRScriptlet |
JRDesignDataset.removeScriptlet(java.lang.String scriptletName)
Removes a scriptlet from the dataset.
|
Modifier and Type | Method and Description |
---|---|
void |
JRDesignDataset.addScriptlet(int index,
JRScriptlet scriptlet)
Inserts a scriptlet at the specified position into the dataset.
|
void |
JasperDesign.addScriptlet(JRScriptlet scriptlet)
Adds a report scriplet.
|
void |
JRDesignDataset.addScriptlet(JRScriptlet scriptlet)
Adds a scriptlet to the dataset.
|
JRScriptlet |
JasperDesign.removeScriptlet(JRScriptlet scriptlet)
Removes a report scriptlet.
|
JRScriptlet |
JRDesignDataset.removeScriptlet(JRScriptlet scriptlet)
Removes a scriptlet from the dataset.
|
Modifier and Type | Class and Description |
---|---|
class |
JRFillScriptlet |
Modifier and Type | Field and Description |
---|---|
protected JRScriptlet |
JRFillScriptlet.parent |
Modifier and Type | Method and Description |
---|---|
JRScriptlet[] |
JRFillDataset.getScriptlets() |
Constructor and Description |
---|
JRFillScriptlet(JRScriptlet parent,
JRFillObjectFactory factory) |
© 2001-2010 Jaspersoft Corporation www.jaspersoft.com