org.pentaho.reporting.libraries.base.util
public class GenericObjectTable extends ObjectTable
Constructor Summary | |
---|---|
GenericObjectTable()
Creates a new object table. | |
GenericObjectTable(int increment)
Creates a new table.
| |
GenericObjectTable(int rowIncrement, int colIncrement)
Creates a new table.
|
Method Summary | |
---|---|
void | copyColumn(int oldColumn, int newColumn)
Copys the contents of the old column to the new column.
|
void | copyRow(int oldRow, int newRow)
Copys the contents of the old row to the new row. |
Object | getObject(int row, int column)
Returns the object from a particular cell in the table. |
void | setObject(int row, int column, Object object)
Sets the object for a cell in the table. |
Parameters: increment the row and column size increment.
Parameters: rowIncrement the row size increment. colIncrement the column size increment.
Parameters: oldColumn the index of the old (source) column newColumn the index of the new column
Parameters: oldRow the index of the old row newRow the index of the new row
Parameters: row the row index (zero-based). column the column index (zero-based).
Returns: The object.
Parameters: row the row index (zero-based). column the column index (zero-based). object the object.