1 package jfun.yan.xml; 2 3 /** 4 * A registry is a place into which compilation results 5 * can be put. 6 * <p> 7 * @author Ben Yu 8 * Nov 20, 2005 4:26:03 PM 9 */ 10 interface Registry { 11 /** 12 * Put a compilation result 13 * @param key the key of the object. 14 * @param val the object. 15 * @param loc the location where the object is compiled. 16 */ 17 void put(String key, Object val, Location loc); 18 } 19