Interface WTable.ScrollableTableModel
-
- All Superinterfaces:
WTable.TableModel
- Enclosing class:
- WTable
public static interface WTable.ScrollableTableModel extends WTable.TableModel
This extension ofWTable.TableModel
is primarily for models that do not store their data locally. Models implementing this interface can provide more efficient calls to back-end systems, as the data model is notified of which rows are likely to be used in the near future.It is expected this TableModel is always used with Pagination.
- Since:
- 1.0.0
- Author:
- Jonathan Austin
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setCurrentRows(int start, int end)
This method will be called by the table to notify the TableModel of which rows are likely to be used in the near future.-
Methods inherited from interface com.github.bordertech.wcomponents.WTable.TableModel
getChildCount, getRendererClass, getRowCount, getRowKey, getValueAt, hasChildren, isCellEditable, isDisabled, isExpandable, isSelectable, isSortable, setValueAt, sort
-
-