edu.ucla.stat.SOCR.util.tablemodels
Interface RowFilter
public interface RowFilter
A filter function used for filtering table rows.
Method Summary |
boolean |
exclude(int row,
javax.swing.table.TableModel tableModel)
Filters table rows. |
exclude
boolean exclude(int row,
javax.swing.table.TableModel tableModel)
- Filters table rows. Returns
true
if the row should be
excluded, false
otherwise.
- Parameters:
row
- row to checktableModel
- table's model
- Returns:
true
if the row should be
excluded, false
otherwise.