return subList;
}
public void render(Treeitem item, Object data) throws Exception {
SimpleTreeNode t = (SimpleTreeNode) data;
FunForm funForm = (FunForm) t.getData();
// Construct treecells
Treecell tcFunName = new Treecell(funForm.getFunName());
Treecell tcFunPath = new Treecell(funForm.getFunPath());
Treecell tcFunId = new Treecell(funForm.getFunId().toString());
Treecell tcBootFlag = new Treecell(funForm.getBootFlag());
/*
* Since only one treerow is allowed, if treerow is not null, append
* treecells to it. If treerow is null, contruct a new treerow and
* attach it to item.