Details
-
Type: New Feature
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: 1.8DR#1
-
Component/s: ICE-Components
-
Labels:None
-
Environment:All
Description
The TreeNode component maintains references to its parent Tree component, and the current DefaultMutableTreeNode. It then tries to save and restore these fields. The Tree reference cannot be saved and restored, since upon restoration the TreeNode's parent would be a new Tree component, not the old one. So, it should probably just look up to its parent, and not even keep a reference. The DefaultMutableTreeNode reference is a hook into the entire tree data model, so we don't want to save this at all, especially since it comes from the bean anyway. The code should be refactored so that the DefaultMutableTreeNode reference is just transient, and not saved away.
Issue Links
Activity
- All
- Comments
- History
- Activity
- Remote Attachments
- Subversion
getTree() changed to search for parent tree every time.
defaultMutableTreeNode seems to be set every time by the renderer, which in turn gets it from a value binding, therefore no change in getter.
Both fields marked transient.
No fields to save anymore, therefore removed saveState() and restoreState().