1 /* 2 * @(#)ReferenceType.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 a reference type. 13 * These include class and interface types, array types, type variables, 14 * and the null type. 15 * 16 * @author Joseph D. Darcy 17 * @author Scott Seligman 18 * @author Peter von der Ahé 19 * @version 1.3 06/07/31 20 * @since 1.6 21 */ 22 public interface ReferenceType extends TypeMirror { 23 } 24