static void printTreeView(TreeView t) { if (t == null) ret; print(t); temp tempIndent(); for (TreeView c : unnull(t.children())) printTreeView(c); }