Filtering on JTable (JDK 1.6)
Hi,
I currently investigating using the new filtering features of JTable in 1.6 (TableRowSorter, RowFilter, etc). By this I came across the following questions:
* Is there a way to utilize multi-core CPUs when filtering? [Background: I have to deal with large data sets and therefore get significant performance improvements when filtering is applied in parallel on N subsets of the original data; N==number of cores)
* Is there a way to have incremental filtering; i.e. the filter operation is based on the previous filter result and does not start from scratch? [Background: again - performance; I want to provide 'filter while you type', which in most cases narrows/reduces the already filtered result list]
Thanks in advance,
Hans

