Thread: JTree trouble
View Single Post
  #4 (permalink)  
Old 08-01-2007, 12:12 AM
hardwired hardwired is offline
Senior Member
 
Join Date: Jul 2007
Posts: 1,191
hardwired is on a distinguished road
It looks like FileSystemModel implements TreeModel which is not mutable, ie, you cannot add and delete nodes in this model. You can add and delete nodes in a DefaultTreeModel.
You have to explicitly use/set a DefaultTreeModel to get this kind of behavior.
Reply With Quote