views:

69

answers:

1

My custom component is composed of three JTrees inside a JPanel. Only one JTree should be selected at a time, so I've added a TreeSelectionListener to each of them that calls clearSelection() on the previously selected JTree. (See here for more details).

That works fine, but I need to prevent the TreeSelectionListeners to trigger when a JTree is deselected. A simple way to distinguish a selection event from a deselection one would be more than enough.

Thanks in advance!

+1  A: 

Just get the current selection from the tree and if it's empty, return.

Aaron Digulla
Just as simple as "if (selectedTree.getSelectionCount() != 0)". I must admit I feel a little bit stupid :D Thanks!
Giuseppe