Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6736249

TreeModel.nodeStructureChanged unselect the root when the root node is selected

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Incomplete
    • Icon: P4 P4
    • None
    • 6
    • client-libs

      FULL PRODUCT VERSION :
      java version "1.6.0_07"
      Java(TM) SE Runtime Environment (build 1.6.0_07-b06)
      Java HotSpot(TM) Client VM (build 10.0-b23, mixed mode, sharing)

      ADDITIONAL OS VERSION INFORMATION :
      Windows XP, Windows Vista

      A DESCRIPTION OF THE PROBLEM :
      DefaultTreeModel.nodeStructureChanged(treeNode) unselect the selected node when the root node is selected. If another node is selected, the selection is not changed.

      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      1. Select the root node
      2. Press some button which to call DefaultTreeModel.nodeStructureChanged(TreeNode);

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      The selection to be not changed
      ACTUAL -
      The selection is unselected

      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
          TreePath path = tree.getSelectionPath();
          if(path != null)
          {
              TreeNode node = (TreeNode)path.getLastPathComponent();
              ((DefaultTreeModel)tree.getModel()).nodeStructureChanged(node);
          }

      ---------- END SOURCE ----------

            Unassigned Unassigned
            ndcosta Nelson Dcosta (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: