org.pentaho.reporting.engine.classic.core
Class GroupFooter
java.lang.Object
org.pentaho.reporting.engine.classic.core.Element
org.pentaho.reporting.engine.classic.core.Section
org.pentaho.reporting.engine.classic.core.Band
org.pentaho.reporting.engine.classic.core.AbstractRootLevelBand
org.pentaho.reporting.engine.classic.core.GroupFooter
- All Implemented Interfaces:
- Serializable, Cloneable, DataTarget, ReportElement, RootLevelBand
public class GroupFooter
- extends AbstractRootLevelBand
A band that appears at the end of each instance of a group. A group-footer can be marked as repeating footer causing
the footer to be printed at the bottom of each page as long as the group is active. If the footer is marked sticky,
the footer will even be printed for all sub-report pages.
Subreports defined for a repeating group footer will be ignored for all repeating instances.
- Author:
- David Gilbert
- See Also:
- Serialized Form
Constructor Summary |
GroupFooter()
Constructs a group footer band, containing no elements. |
Method Summary |
boolean |
isRepeat()
Checks whether this group header should be repeated on new pages. |
boolean |
isSticky()
Returns true if the footer should be shown on all subreports. |
void |
setRepeat(boolean repeat)
Defines, whether this group header should be repeated on new pages. |
void |
setSticky(boolean b)
Defines whether the footer should be shown on all subreports. |
Methods inherited from class org.pentaho.reporting.engine.classic.core.Band |
addElement, addElement, addElements, clear, getElement, getElement, getElementArray, getElementCount, isPagebreakAfterPrint, isPagebreakBeforePrint, removeElement, setElementAt, setPagebreakAfterPrint, setPagebreakBeforePrint, toString, unsafeGetElementArray |
Methods inherited from class org.pentaho.reporting.engine.classic.core.Element |
derive, getAttribute, getAttributeExpression, getAttributeExpressionNames, getAttributeExpressionNamespaces, getAttributeNames, getAttributeNamespaces, getAttributes, getChangeTracker, getContentBase, getDataSource, getDefinitionSource, getElementType, getElementTypeName, getHRefTarget, getId, getMetaData, getName, getObjectID, getParent, getParentSection, getReportDefinition, getStyle, getStyleExpression, getStyleExpressions, getTreeLock, getValue, isDynamicContent, isVisible, notifyNodeChildAdded, notifyNodeChildRemoved, notifyNodePropertiesChanged, notifyNodePropertiesChanged, notifyNodeStructureChanged, setAttribute, setAttribute, setAttributeExpression, setDataSource, setDynamicContent, setElementType, setHRefTarget, setId, setName, setStyleExpression, setVisible |
Methods inherited from interface org.pentaho.reporting.engine.classic.core.ReportElement |
getAttribute, getAttributeExpression, getAttributeExpressionNames, getAttributeExpressionNamespaces, getAttributeNames, getAttributeNamespaces, getAttributes, getId, getMetaData, getName, getObjectID, getParentSection, getReportDefinition, getStyle, getStyleExpression, getStyleExpressions, getTreeLock, setAttribute, setAttributeExpression, setStyleExpression |
GroupFooter
public GroupFooter()
- Constructs a group footer band, containing no elements.
isRepeat
public boolean isRepeat()
- Checks whether this group header should be repeated on new pages.
- Returns:
- true, if the header will be repeated, false otherwise
setRepeat
public void setRepeat(boolean repeat)
- Defines, whether this group header should be repeated on new pages.
- Parameters:
repeat
- true, if the header will be repeated, false otherwise
isSticky
public boolean isSticky()
- Returns true if the footer should be shown on all subreports.
- Returns:
- true or false.
setSticky
public void setSticky(boolean b)
- Defines whether the footer should be shown on all subreports.
- Parameters:
b
- a flag indicating whether or not the footer is shown on the first page.