Package com.reportmill.shape
Class RMCellColumn
- java.lang.Object
- 
- com.reportmill.shape.RMCellColumn
 
- 
- All Implemented Interfaces:
- java.lang.Cloneable
 
 public class RMCellColumn extends java.lang.Object implements java.lang.CloneableProvides info for a column in a cell table.
- 
- 
Constructor SummaryConstructors Constructor Description RMCellColumn()Creates a new column.RMCellColumn(RMCellTable aTable)Creates a new column for the given table.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Objectclone()Returns a basic clone of this object.java.lang.ObjectfromXML(RXArchiver anArchiver, RXElement anElement)XML unarchival.RMCellgetCell(int anIndex)Returns the specific child cell at the given index in the list of unique cells for this column.intgetCellCount()Returns the number of cells in this column.RMCellDividergetDivider(int anIndex)Returns the specific divider at given index.intgetDividerCount()Returns the divider count.java.util.ListgetDividers()Returns the dividers for this column.intgetIndex()Returns the index of this column in the table.floatgetMaxX()Returns the max x of this column.RMCellTablegetTable()Returns the row's parent table.floatgetWidth()Returns the width of this column.floatgetX()Returns the x of this column.voidresetDividers()Resets dividers so they will be recalculated.voidsetWidth(double aWidth)Sets the width of this column.RXElementtoXML(RXArchiver anArchiver)XML archival.
 
- 
- 
- 
Constructor Detail- 
RMCellColumnpublic RMCellColumn() Creates a new column.
 - 
RMCellColumnpublic RMCellColumn(RMCellTable aTable) Creates a new column for the given table.
 
- 
 - 
Method Detail- 
getTablepublic RMCellTable getTable() Returns 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.
 - 
getCellpublic RMCell getCell(int anIndex) Returns 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.
 - 
getDividerpublic RMCellDivider getDivider(int anIndex) Returns the specific divider at given index.
 - 
getDividerspublic java.util.List getDividers() Returns the dividers for this column.
 - 
resetDividerspublic void resetDividers() Resets dividers so they will be recalculated.
 - 
clonepublic java.lang.Object clone() Returns a basic clone of this object.- Overrides:
- clonein class- java.lang.Object
 
 - 
toXMLpublic RXElement toXML(RXArchiver anArchiver) XML archival.
 - 
fromXMLpublic java.lang.Object fromXML(RXArchiver anArchiver, RXElement anElement) XML unarchival.
 
- 
 
-