My situation is as follows: I've got a JList which triggers a search (using a ListSelectionListener) whenever a selection is made in the list. I'm trying to reset the selection on the list, using list.clearSelection(). The problem with this is that using clearSelection() triggers the listener, which calls the search: not good.
Is there a way of clearing the selection on the list without having the listener triggered? Could this be a hint that I'm not using the listener properly? In general though, can you change something in a Swing UI without triggering events associated with that element?
Thanks.