How to add more selections on a table?
I have a table which added a ListSelectionListener. First column are the ages, when user selected on a row (or rows) , I want all the rows which has the same age as user selected will be selected(highlighted). How do i do that ? My problem is each time when i use table.addRowSelectionInterval(i, i) it will trickers valueChanged(ListSelectionEvetn e) again and it goes on and on. Can anybody tell me how do i solve this problem. thanks

