/*
* @(#)ReferenceType.java 1.2 04/06/07
*
* Copyright 2004 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package com.sun.mirror.type;
/**
* Represents a reference type.
* These include class and interface types, array types, and type variables.
*
* @author Joseph D. Darcy
* @author Scott Seligman
* @version 1.2 04/06/07
* @since 1.5
*/
public interface ReferenceType extends TypeMirror {
}
|