public static class ArrayOfRecordsPane.ArrayAsTable extends javax.swing.table.AbstractTableModel
| Modifier and Type | Method and Description |
|---|---|
int |
getColumnCount()
Get the column count of the Matrix.
|
java.lang.String |
getColumnName(int columnIndex)
Get the name of the specified column, which is the column
index as a string.
|
int |
getRowCount()
Get the row count of the Matrix.
|
java.lang.Object |
getValueAt(int row,
int column)
Get the specified entry as a String.
|
void |
removeRow(int row)
Remove the specified row from the table.
|
addTableModelListener, findColumn, fireTableCellUpdated, fireTableChanged, fireTableDataChanged, fireTableRowsDeleted, fireTableRowsInserted, fireTableRowsUpdated, fireTableStructureChanged, getColumnClass, getListeners, getTableModelListeners, isCellEditable, removeTableModelListener, setValueAtpublic int getColumnCount()
public java.lang.String getColumnName(int columnIndex)
getColumnName in interface javax.swing.table.TableModelgetColumnName in class javax.swing.table.AbstractTableModelcolumnIndex - The index of the column.public int getRowCount()
public java.lang.Object getValueAt(int row, int column)
row - The row number.column - The column number.public void removeRow(int row)
row - The row to remove, starting with index 0.