1 package polyglot.types; 2 3 /** 4 * An <code>Importable</code> is a type object that can be imported by another 5 * type object. An <code>Importable</code> is contained in a 6 * <code>Package</code>. 7 */ 8 public interface Importable extends Named 9 { 10 Package package_(); 11 } 12