1 2 3 4 5 6 7 8
/* SimpleTreeNode.java */ public interface SimpleTreeNode { public void addChild(SimpleTreeNode child); public int getChildCnt(); public SimpleTreeNode getChild(int pos); }