public class SimpleTable extends AbstractIndexedTable
Constructor and Description |
---|
SimpleTable(String[] names,
Class[] classes,
Object[][] values) |
Modifier and Type | Method and Description |
---|---|
Class<?> |
getColumnClass(int columnIndex)
Returns the most specific superclass for all the cell values
in the column.
|
int |
getColumnCount()
Returns the number of columns in the model.
|
String |
getColumnName(int columnIndex)
Returns the name of the column at
columnIndex . |
int |
getRowCount()
Returns the number of rows in the model.
|
Object |
getValueAt(int rowIndex,
int columnIndex)
Returns the value for the cell at
columnIndex and
rowIndex . |
getIndex, getUniqueIndex
findColumn, getColumn, getRow, print
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
findColumn, getColumn, getRow, print
public int getRowCount()
Table
JTable
uses this method to determine how many rows it
should display. This method should be quick, as it
is called frequently during rendering.Table.getColumnCount()
public int getColumnCount()
Table
JTable
uses this method to determine how many columns it
should create and display by default.Table.getRowCount()
public String getColumnName(int columnIndex)
Table
columnIndex
. This is used
to initialize the table's column header name. Note: this name does
not need to be unique; two columns in a table can have the same name.columnIndex
- the index of the columnpublic Class<?> getColumnClass(int columnIndex)
Table
JTable
to set up a
default renderer and editor for the column.columnIndex
- the index of the columnpublic Object getValueAt(int rowIndex, int columnIndex)
Table
columnIndex
and
rowIndex
.rowIndex
- the row whose value is to be queriedcolumnIndex
- the column whose value is to be queriedCopyright © 2014 Macrofocus GmbH. All Rights Reserved.