121122123124125126127128129130
--m_curid; } else if ( row == m_firstid ) { ++m_firstid; } else { if ( m_openrows == null ) m_openrows = new IntIntTreeMap(false); m_openrows.put(row, row); } return true; }
2223242526272829
* @param table the table to manage */ public FilteredRowManager(Table table) { super(table); m_childToParent = new IntColumn(table.getRowCount()); m_parentToChild = new IntIntTreeMap(false); clear(); }