I used a JTree in my GUI and added it to a JFrame. When I want to update it and change it\'s nodes in another part of my program (while program is running, as an action performe
Do you mean the GUI aspect just isn't showing your change? You should probably look int repaint() and revalidate().
repaint()
revalidate().
Here's a good description of when to call which one.