1 package org.catacomb.interlish.structure; 2 3 4 5 6 public interface TreeNode { 7 8 9 Object getParent(); 10 11 int getChildCount(); 12 13 Object getChild(int index); 14 15 int getIndexOfChild(Object child); 16 17 boolean isLeaf(); 18 19 20 }