Package com.illumon.iris.gui.table
Interface AbstractDataTableModel
- All Superinterfaces:
TableModel
- All Known Implementing Classes:
IrisTreeTableModel
,RingBufferObjectTableModel
public interface AbstractDataTableModel extends TableModel
Common implementations for a table model
-
Method Summary
Methods inherited from interface javax.swing.table.TableModel
addTableModelListener, getColumnClass, getColumnCount, getColumnName, getRowCount, getValueAt, isCellEditable, removeTableModelListener, setValueAt
-
Method Details
-
getRow
com.fishlib.dataobjects.WAbstractDataObject getRow(int index) -
getData
-
getData
Allow bulk fetch to save round trips for applicable implementations. Returns null if bulk fetch isn't supported/desired/allowed, in which case call the singular getData(GuiColumn, int), above.- Parameters:
column
- The column to fetch data fromrows
- The rows to fetch- Returns:
- null or an Iterator
-