You can buy this project and download/modify it how often you want.
package com.anysoft.util.datatree; public class DataTreeNode { protected object content; public DataTreeNode brother = null; public DataTreeNode child = null; public DataTreeNode(object _content){ content = _content; } public String toString(){ return content.toString(); } public object getContent(){ return content; } }