tags:

views:

92

answers:

1

I have a tree and a TreePath to one of its nodes. How do I programatically select this node? Will setSelectionPath of the JTree object alone work?

+2  A: 

Yes. From the Java Documentation

If any component of the path is hidden (under a collapsed node), and getExpandsSelectedPaths is true it is exposed (made viewable).

Varun