297298299300301302303304305306307
// Build the tree. TreeNode tn = new CommentTreeNode(); tn.setType("comments"); tn.setLeaf(false); // Create the tree: TreeModel tm = new TreeModelBase(tn); // Add child nodes: this.getChildComments(tm, tn, cmts); // Add a child for the reply box:
643644645646647648649
super(title, workspaceModel, 1000); } @Override public Panel newPanel(String panelId, IModel<Workspace> workspaceModel) { return new NodeManagerContainerPanel(panelId, workspaceModel); }