View Javadoc

1   package org.catacomb.interlish.structure;
2   
3   
4   public interface Factory {
5   
6   
7       Object make(String s);
8   
9   
10      void populate(Object obj, Element elt);
11  
12  }