In the example:
 
/org/apache/myfaces/examples/listexample/TreeTable.java
 
There is the following:
 
DefaultMutableTreeNode root = new DefaultMutableTreeNode(new TreeItem(1, "XY", "9001", "XY 9001"));
        DefaultMutableTreeNode a = new DefaultMutableTreeNode(new TreeItem(2, "A", "9001", "A 9001"));
        root.insert(a);
        DefaultMutableTreeNode b = new DefaultMutableTreeNode(new TreeItem(3, "B", "9001", "B 9001"));
        root.insert(b);
        DefaultMutableTreeNode c = new DefaultMutableTreeNode(new TreeItem(4, "C", "9001", "C 9001"));
        root.insert(c);
 
Where is the TreeItem Javadoc on http://myfaces.apache.org/tomahawk/apidocs/index.html?
 
I've looked without success.
 
Thanks,
 
--Todd

Reply via email to