public interface Table
Modifier and Type | Method and Description |
---|---|
Column |
findColumn(String name) |
Column |
getColumn(int column) |
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 . |
Row |
getRow(int row) |
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 . |
void |
print(PrintStream out,
String caption,
boolean html) |
Column getColumn(int column)
Row getRow(int row)
void print(PrintStream out, String caption, boolean html)
int getRowCount()
JTable
uses this method to determine how many rows it
should display. This method should be quick, as it
is called frequently during rendering.getColumnCount()
int getColumnCount()
JTable
uses this method to determine how many columns it
should create and display by default.getRowCount()
String getColumnName(int columnIndex)
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 columnClass<?> getColumnClass(int columnIndex)
JTable
to set up a
default renderer and editor for the column.columnIndex
- the index of the columnObject getValueAt(int rowIndex, int columnIndex)
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.