Package com.reportmill.shape
Class RMCellRow
- java.lang.Object
- 
- com.reportmill.shape.RMCellRow
 
- 
- All Implemented Interfaces:
- java.lang.Cloneable
 
 public class RMCellRow extends java.lang.Object implements java.lang.CloneableThis shape manages a row of cells.
- 
- 
Constructor SummaryConstructors Constructor Description RMCellRow()Creates a new cell row.RMCellRow(RMCellTable aTable)Creates a new cell row.
 - 
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 row.intgetCellCount()Returns the number of cells in this row.RMCellDividergetDivider(int anIndex)Returns the specific divider at given index.intgetDividerCount()Returns the divider count.java.util.ListgetDividers()Returns the dividers for this column.floatgetHeight()Returns the row height.intgetIndex()Returns the index of this row in the table.floatgetMaxY()Returns the row max y.RMCellTablegetTable()Returns the row's parent table.floatgetY()Returns the row y.voidresetDividers()Resets dividers so they will be recalculated.voidsetHeight(double aHeight)Sets the row height.RXElementtoXML(RXArchiver anArchiver)XML archival.
 
- 
- 
- 
Constructor Detail- 
RMCellRowpublic RMCellRow() Creates a new cell row.
 - 
RMCellRowpublic RMCellRow(RMCellTable aTable) Creates a new cell row.
 
- 
 - 
Method Detail- 
getTablepublic RMCellTable getTable() Returns the row's parent table.
 - 
getIndexpublic int getIndex() Returns the index of this row in the table.
 - 
getCellCountpublic int getCellCount() Returns the number of cells in this row.
 - 
getCellpublic RMCell getCell(int anIndex) Returns the specific child cell at the given index in the list of unique cells for this row.
 - 
getYpublic float getY() Returns the row y.
 - 
getHeightpublic float getHeight() Returns the row height.
 - 
setHeightpublic void setHeight(double aHeight) Sets the row height.
 - 
getMaxYpublic float getMaxY() Returns the row max y.
 - 
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.
 
- 
 
-