public class Tree {
private List leaves = new LinkedList();
private Tree parent = null;
private String data;
public Tree(String data, Tree parent) {
this.data = data;
this.parent = parent;
}
}
Obviously you can add utility methods to add/remove children.