Question

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!

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top