1 package polyglot.types;2 3 /**4 * A <code>NullType</code> represents the type of the Java <code>null</code>5 * literal.6 */7 public interface NullType extends Type 8 {9 }10