tree = createTree();
//Try and load the already stored nodes from the session.
//If this is the first time we access the page, this method
//will return null, indicating no nodes is stored.
TreeNode existingRootNode = loadNodesFromSession();
if(existingRootNode != null) {
//OK we had already nodes stored in the session, so no need
//to rebuild them. We attach the root node and return.
tree.setRootNode(existingRootNode);
return tree;
}
//Create a node representing the root directory with the specified
//parameter as the value. Because an id is not specified, a random
//one will be generated by the node. By default the root node is
//not rendered by the tree. This can be changed by calling
//tree.setRootNodeDisplayed(true).
TreeNode root = new TreeNode("c:");
//Create a new directory, setting the root directory as its parent. Here
//we do specify a id as the 2nd argument, so no id is generated.
TreeNode dev = new TreeNode("dev","1", root);
//The following 3 nodes represent files in the directory, setting the
//dev node as their parent. Note the false argument to the constructor.
//This means that the specific node does not support child nodes, and
//it will be rendered as a leaf icon. If children are supported (the
//default value) then even if the node is a leaf, it will still be rendered
//as a collapsed icon. In the example a default leaf node will be
//rendered as a directory, and a node that does not support children is
//rendered as a file.
// Also note the node with the long text, will cause the tree to overflow
// and add scrollbars
new TreeNode("java.pdf", "1.1", dev, false);
new TreeNode("JEE 6 - the new fantastic approach to write better software (apparently)", "1.2", dev, false);
new TreeNode("ruby.pdf", "1.3", dev, false);
//We continue constructing the rest of the tree
TreeNode programFiles = new TreeNode("program files", "2", root);
new TreeNode("Adobe", "2.1", programFiles);
TreeNode download = new TreeNode("downloads","3", root);
TreeNode web = new TreeNode("web", "3.1", download);
new TreeNode("html.pdf", "3.1.1", web, false);
new TreeNode("css.html", "3.1.2", web, false);
TreeNode databases = new TreeNode("databases", "3.2", download);
TreeNode relationalDb = new TreeNode("relational", "3.2.1", databases);
new TreeNode("mysql.html", "3.2.1.1", relationalDb, false);
new TreeNode("oracle.pdf", "3.2.1.2", relationalDb, false);
new TreeNode("postgres", "3.2.1.3", relationalDb, false);
TreeNode objectDb = new TreeNode("object", "3.2.2", databases);
new TreeNode("db4o.html", "3.2.2.1", objectDb, false);
//Attach the root node containing all the other nodes to the tree
tree.setRootNode(root);
//By default root node is not displayed in browser. Here we expand it,