Class JRFillCrosstabColumnGroup
- java.lang.Object
-
- net.sf.jasperreports.crosstabs.fill.JRFillCrosstabGroup
-
- net.sf.jasperreports.crosstabs.fill.JRFillCrosstabColumnGroup
-
- All Implemented Interfaces:
Cloneable
,JRCrosstabColumnGroup
,JRCrosstabGroup
,JRCloneable
public class JRFillCrosstabColumnGroup extends JRFillCrosstabGroup implements JRCrosstabColumnGroup
Crosstab column group implementation used at fill time.- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
-
-
Field Summary
Fields Modifier and Type Field Description protected JRFillCellContents
crosstabHeader
-
Fields inherited from class net.sf.jasperreports.crosstabs.fill.JRFillCrosstabGroup
header, parentGroup, totalHeader, variable
-
-
Constructor Summary
Constructors Constructor Description JRFillCrosstabColumnGroup(JRCrosstabColumnGroup group, JRFillCrosstabObjectFactory factory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JRCellContents
getCrosstabHeader()
Returns the crosstab header cell of the column group.JRFillCellContents
getFillCrosstabHeader()
int
getHeight()
Returns the height of the group headers.CrosstabColumnPositionEnum
getPosition()
Returns the position of the header contents for header stretching.-
Methods inherited from class net.sf.jasperreports.crosstabs.fill.JRFillCrosstabGroup
clone, getBucket, getFillHeader, getFillTotalHeader, getFillVariable, getHeader, getMergeHeaderCells, getName, getTotalHeader, getTotalPosition, getVariable, hasTotal
-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.sf.jasperreports.engine.JRCloneable
clone
-
Methods inherited from interface net.sf.jasperreports.crosstabs.JRCrosstabGroup
getBucket, getHeader, getMergeHeaderCells, getName, getTotalHeader, getTotalPosition, getVariable, hasTotal
-
-
-
-
Field Detail
-
crosstabHeader
protected JRFillCellContents crosstabHeader
-
-
Constructor Detail
-
JRFillCrosstabColumnGroup
public JRFillCrosstabColumnGroup(JRCrosstabColumnGroup group, JRFillCrosstabObjectFactory factory)
-
-
Method Detail
-
getPosition
public CrosstabColumnPositionEnum getPosition()
Description copied from interface:JRCrosstabColumnGroup
Returns the position of the header contents for header stretching.The column group headers stretch horizontally when there are multiple sub group entries. The header contents will be adjusted to the new width depending on this attribute:
CrosstabColumnPositionEnum.LEFT
- the contents will be rendered on the left side of the headerCrosstabColumnPositionEnum.CENTER
- the contents will be rendered on the center of the headerCrosstabColumnPositionEnum.RIGHT
- the contents will be rendered on the right side of the headerCrosstabColumnPositionEnum.STRETCH
- the contents will be proportionally stretched to the new header size
- Specified by:
getPosition
in interfaceJRCrosstabColumnGroup
- Returns:
- the position of the header contents for header stretching
-
getHeight
public int getHeight()
Description copied from interface:JRCrosstabColumnGroup
Returns the height of the group headers.- Specified by:
getHeight
in interfaceJRCrosstabColumnGroup
- Returns:
- the height of the group headers
- See Also:
JRCrosstabGroup.getHeader()
,JRCrosstabGroup.getTotalHeader()
-
getCrosstabHeader
public JRCellContents getCrosstabHeader()
Description copied from interface:JRCrosstabColumnGroup
Returns the crosstab header cell of the column group.The cell will be rendered at the left of the corresponding row of column headers, potentially overlapping
the crosstab header cell
.The width of the cell is the total width of row group headers, and the height is the height of the corresponding column header.
- Specified by:
getCrosstabHeader
in interfaceJRCrosstabColumnGroup
- Returns:
- the crosstab header cell of the column group, or
null
if no header cell is present - See Also:
JRCrosstab.getHeaderCell()
,JRCrosstabColumnGroup.getHeight()
-
getFillCrosstabHeader
public JRFillCellContents getFillCrosstabHeader()
-
-