1 /* 2 * @(#)ReferenceType.java 1.2 04/06/07 3 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 package com.sun.mirror.type; 9 10 11 /** 12 * Represents a reference type. 13 * These include class and interface types, array types, and type variables. 14 * 15 * @author Joseph D. Darcy 16 * @author Scott Seligman 17 * @version 1.2 04/06/07 18 * @since 1.5 19 */ 20 21 public interface ReferenceType extends TypeMirror { 22 } 23