How can I get the Root Node in JTree?
Created May 4, 2012
Schwann Paul If you have
JTree t = ...;
You can simply use
t.getModel().getRoot();
Created May 4, 2012
JTree t = ...;
You can simply use
t.getModel().getRoot();