KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > mirror > type > AnnotationType


1 /*
2  * @(#)AnnotationType.java 1.1 04/01/26
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 import com.sun.mirror.declaration.AnnotationTypeDeclaration;
12
13
14 /**
15  * Represents an annotation type.
16  *
17  * @author Joseph D. Darcy
18  * @author Scott Seligman
19  * @version 1.1 04/01/26
20  * @since 1.5
21  */

22
23 public interface AnnotationType extends InterfaceType {
24
25     /**
26      * {@inheritDoc}
27      */

28     AnnotationTypeDeclaration getDeclaration();
29 }
30
Popular Tags