Hi,
I've created a JTree, that adds nodes onto the "top"...
DefaultMutableTreeNode top = new DefaultMutableTreeNode("Users");
jTree1 = new JTree(top);
Once I have the tree created, how do I make it get the text of the selected node.. like a JList you use the command
jList1.getSelectedValue().toString()",
Thanks.