1 /*2 * @(#)AnnotationType.java 1.1 04/01/263 *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 import com.sun.mirror.declaration.AnnotationTypeDeclaration;12 13 14 /**15 * Represents an annotation type.16 *17 * @author Joseph D. Darcy18 * @author Scott Seligman19 * @version 1.1 04/01/2620 * @since 1.521 */22 23 public interface AnnotationType extends InterfaceType {24 25 /**26 * {@inheritDoc}27 */28 AnnotationTypeDeclaration getDeclaration();29 }30