public class ColumnsTable extends AbstractTable
Constructor and Description |
---|
ColumnsTable(Table table) |
Modifier and Type | Method and Description |
---|---|
void |
addColumns(Column... columns) |
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 . |
findColumn, getColumn, getRow, print
public ColumnsTable(Table table)
public void addColumns(Column... columns)
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.