BrightSide Workbench Full Report + Source Code
org.turro.wd.tree.TreeUtil Class Reference

Static Public Member Functions

static void expandRootBranches (TreeView tree)
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 30 of file TreeUtil.java.

Member Function Documentation

◆ expandRootBranches()

static void org.turro.wd.tree.TreeUtil.expandRootBranches ( TreeView  tree)
static

Definition at line 32 of file TreeUtil.java.

32  {
33  List<TreeNode> roots = (List<TreeNode>) tree.getTreeData();
34  for(TreeNode tn : roots) {
35  if(tn instanceof TreeBranch) {
36  tree.expandBranch(Sequence.Tree.pathOf(roots, tn));
37  }
38  }
39  }
Here is the caller graph for this function:

The documentation for this class was generated from the following file: