212223242526272829
* Create a new FilteredRowManager. * @param table the table to manage */ public FilteredRowManager(Table table) { super(table); m_childToParent = new IntColumn(table.getRowCount()); m_parentToChild = new IntIntTreeMap(false); clear(); }