Java examples for Swing:JTree
Expands a given node in a JTree.
//package com.java2s; public class Main { /**/*from www .java2 s. co m*/ * Expands a given node in a JTree. * * @param tree The JTree to expand. * @param model The TreeModel for tree. * @param node The node within tree to expand. * @param row The displayed row in tree that represents * node. * @param depth The depth to which the tree should be expanded. * Zero will just expand node, a negative * value will fully expand the tree, and a positive * value will recursively expand the tree to that * depth relative to node. */ public static int expandJTreeNode(javax.swing.JTree tree, javax.swing.tree.TreeModel model, Object node, int row, int depth) { if (node != null && !model.isLeaf(node)) { tree.expandRow(row); if (depth != 0) { for (int index = 0; row + 1 < tree.getRowCount() && index < model.getChildCount(node); index++) { row++; Object child = model.getChild(node, index); if (child == null) break; javax.swing.tree.TreePath path; while ((path = tree.getPathForRow(row)) != null && path.getLastPathComponent() != child) row++; if (path == null) break; row = expandJTreeNode(tree, model, child, row, depth - 1); } } } return row; } }