Thread: JTree trouble
View Single Post
  #2 (permalink)  
Old 07-31-2007, 08:05 PM
hardwired hardwired is offline
Senior Member
 
Join Date: Jul 2007
Posts: 1,124
hardwired is on a distinguished road
Tell the TreeModel about the change. The tree listens to the model for changes.
You might try something like
Code:
((DefaultTreeModel)tree.getModel()).nodesWereRemoved(...args...);
Reply With Quote