1 package polyglot.types; 2 3 import polyglot.ast.*; 4 5 /** 6 * A <code>Resolver</code> is responsible for looking up types and 7 * packages by name. 8 */ 9 public interface Resolver { 10 11 /** 12 * Find a type object by name. 13 */ 14 public Named find(String name) throws SemanticException; 15 } 16