I'm looking for a threaded solution to updating my JTree every second.
Basically, I'm...
- Importing an external file
- Creating an Enumeration off of that
- Building the tree off the enumeration
The external file can change at random, and the data in the tree needs to represent this change in a somewhat reasonable time manner. How would I be able to have the tree redraw without repainting the entire content pane which the JTree (via a panel) is in?
Thanks!