KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > types > Importable


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 JavaDoc package_();
11 }
12
Popular Tags