1 /* 2 * @(#)NullType.java 1.3 06/07/31 3 * 4 * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 package javax.lang.model.type; 9 10 11 /** 12 * Represents the null type. 13 * This is the type of the expression {@code null}, 14 * 15 * @author Joseph D. Darcy 16 * @author Scott Seligman 17 * @author Peter von der Ahé 18 * @version 1.3 06/07/31 19 * @since 1.6 20 */ 21 22 public interface NullType extends ReferenceType { 23 } 24