Example usage for Java javax.swing.table AbstractTableModel fields, constructors, methods, implement or subclass
The text is from its open source code.
int | getColumnCount() Returns the number of columns in the model. |
String | getColumnName(int column) Returns a default name for the column using spreadsheet conventions: A, B, C, ... |
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 | setValueAt(Object aValue, int rowIndex, int columnIndex) This empty implementation is provided so users don't have to implement this method if their data model is not editable. |