TITLE:JTreeのノードを展開・折り畳み
Posted by aterai at 2007-05-07

JTreeのノードを展開・折り畳み

JTreeのすべてのノードに対して、展開、折り畳みを行います。
  • category: swing folder: ExpandAllNodes title: JTreeのノードを展開・折り畳み tags: [JTree, TreeNode, TreePath] author: aterai pubdate: 2007-05-07T17:11:21+09:00 description: JTreeのすべてのノードに対して、展開、折り畳みを行います。 image: https://lh5.googleusercontent.com/_9Z4BYR88imo/TQTMS3T9nvI/AAAAAAAAAY8/ooi4QMbp6fA/s800/ExpandAllNodes.png

概要

JTreeのすべてのノードに対して、展開、折り畳みを行います。
ExpandAllNodes.png

サンプルコード

#spanend
#spanadd
* サンプルコード [#sourcecode]
#spanend
#spanadd
#code(link){{
#spanend
private void expandAll(JTree tree) {
  int row = 0;
  while(row<tree.getRowCount()) {
  while (row < tree.getRowCount()) {
    tree.expandRow(row);
    row++;
  }
}
#spanadd

#spanend
private void collapseAll(JTree tree) {
  int row = tree.getRowCount()-1;
  while(row>=0) {
  int row = tree.getRowCount() - 1;
  while (row >= 0) {
    tree.collapseRow(row);
    row--;
  }
}
#spandel
#spanend
#spanadd

#spanend
private void visitAll(JTree tree, TreePath parent, boolean expand) {
  TreeNode node = (TreeNode)parent.getLastPathComponent();
  if(!node.isLeaf() && node.getChildCount()>=0) {
    Enumeration e = node.children();
    while(e.hasMoreElements()) {
      TreeNode n = (TreeNode)e.nextElement();
      TreePath path = parent.pathByAddingChild(n);
      visitAll(tree, path, expand);
  TreeNode node = (TreeNode) parent.getLastPathComponent();
  // children(node).forEach(n -> visitAll(tree, parent.pathByAddingChild(n), expand));
  if (!node.isLeaf()) {
    // Java 9: Enumeration<TreeNode> e = node.children();
    Enumeration<?> e = node.children();
    while (e.hasMoreElements()) {
      visitAll(tree, parent.pathByAddingChild(e.nextElement()), expand);
    }
  }
  if(expand) tree.expandPath(parent);
  else       tree.collapsePath(parent);
  if (expand) {
    tree.expandPath(parent);
  } else {
    tree.collapsePath(parent);
  }
}
#spanadd

#spanend
#spanadd
// private static Stream<TreeNode> children(TreeNode node) {
#spanend
#spanadd
//   // Java 9:
#spanend
#spanadd
//   // return Collections.list(node.children()).stream();
#spanend
#spanadd
//   // Java 8:
#spanend
#spanadd
//   return Collections.list((Enumeration<?>) node.children())
#spanend
#spanadd
//     .stream().filter(TreeNode.class::isInstance).map(TreeNode.class::cast);
#spanend
#spanadd
// }
#spanend

解説

  • expandAll(A)
    • JTreeをリストとみなしてexpandAllでは先頭から順番にJTree#expandRow(int)メソッドを実行しています。
    • ループは全展開された時のJTreeの行インデックス数だけ繰り返されます。

解説

  • expandAll(A)
    • JTreeをリストとみなしてexpandAllでは先頭から順番にJTree#expandRow(int)メソッドを実行
    • ループは全展開された時のJTreeの行数だけ繰り返す
  • collapseAll(A)
    • 末尾から順番にJTree#collapseRow(int)メソッドを実行し、表示されているすべてのノードを折り畳む
    • 子ノードは展開されているが親ノードが折り畳まれている場合、その非表示となっている子ノードに対しては折り畳みを実行しない
  • expandAll(B)
    • visitAll(tree, new TreePath(root), true);
    • 再帰的にTreePathを辿って展開(JTree#expandPath(TreePath)メソッド)を実行
  • collapseAll(B)
    • visitAll(tree, new TreePath(root), false);
    • 再帰的にTreePathを辿って折り畳み(JTree#collapsePath(TreePath)メソッド)を実行
  • collapseAll(A)
    • 末尾から順番にJTree#collapseRow(int)メソッドを実行し、見かけ上すべてのノードを折り畳みます。
    • 子ノードは展開されているが、親ノードが折り畳まれている場合、その子ノードは折り畳まれません。

参考リンク

  • expandAll(B), collapseAll(B)
    • visitAll(tree, new TreePath(root), true);
    • visitAll(tree, new TreePath(root), false);
    • 再帰的にTreePathを辿って、JTree#expandPath(TreePath)、JTree#pacollapsePath(TreePath)メソッドを実行することで、展開、折り畳みを行っています。

コメント