public TableReport
Interface for classes with data that can be presented in tables
java.lang.Object[] getTableColumnNames()
Get the names of the columns
java.lang.String getTableTitle()
Get the title of the table
int getColumnCount()
Get the number of the columns
long getRowCount()
Get the number of rows
long getElementCount()
Get the total number of elements in the dataset. Elements = rowCount * columnCount;
java.lang.Object[] getRow(long row)
Returns specified row.
row - row numberjava.lang.Object getValueAt(long row,
int col)
Returns value at given row and column.
row - row numbercol - column numberjava.lang.String toStringTabDelim()