1: package jsint; 2: 3: /** Used by Import. One for each (import) expression. **/ 4: public interface Importer { 5: public Class classNamed(String name); 6: 7: public void reset(); 8: }