Package com.reportmill.shape
Class RMCellColumn
java.lang.Object
com.reportmill.shape.RMCellColumn
- All Implemented Interfaces:
- Cloneable
Provides info for a column in a cell table.
- 
Constructor SummaryConstructorsConstructorDescriptionCreates a new column.RMCellColumn(RMCellTable aTable) Creates a new column for the given table.
- 
Method SummaryModifier and TypeMethodDescriptionclone()Returns a basic clone of this object.fromXML(RXArchiver anArchiver, RXElement anElement) XML unarchival.getCell(int anIndex) Returns the specific child cell at the given index in the list of unique cells for this column.intReturns the number of cells in this column.getDivider(int anIndex) Returns the specific divider at given index.intReturns the divider count.Returns the dividers for this column.intgetIndex()Returns the index of this column in the table.floatgetMaxX()Returns the max x of this column.getTable()Returns the row's parent table.floatgetWidth()Returns the width of this column.floatgetX()Returns the x of this column.voidResets dividers so they will be recalculated.voidsetWidth(double aWidth) Sets the width of this column.toXML(RXArchiver anArchiver) XML archival.
- 
Constructor Details- 
RMCellColumnpublic RMCellColumn()Creates a new column.
- 
RMCellColumnCreates a new column for the given table.
 
- 
- 
Method Details- 
getTableReturns the row's parent table.
- 
getIndexpublic int getIndex()Returns the index of this column in the table.
- 
getCellCountpublic int getCellCount()Returns the number of cells in this column.
- 
getCellReturns the specific child cell at the given index in the list of unique cells for this column.
- 
getXpublic float getX()Returns the x of this column.
- 
getWidthpublic float getWidth()Returns the width of this column.
- 
setWidthpublic void setWidth(double aWidth) Sets the width of this column.
- 
getMaxXpublic float getMaxX()Returns the max x of this column.
- 
getDividerCountpublic int getDividerCount()Returns the divider count.
- 
getDividerReturns the specific divider at given index.
- 
getDividersReturns the dividers for this column.
- 
resetDividerspublic void resetDividers()Resets dividers so they will be recalculated.
- 
cloneReturns a basic clone of this object.
- 
toXMLXML archival.
- 
fromXMLXML unarchival.
 
-