View Javadoc

1   package org.catacomb.interlish.structure;
2   
3   
4   public interface Parent {
5   
6   
7       boolean hasChild(String s);
8   
9       Object getChild(String s);
10  
11  
12  }