You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@myfaces.apache.org by Todd Patrick <To...@dtn.com> on 2006/06/05 16:25:50 UTC

Where is the TreeItem Javadoc?

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