KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > javadoc > AnnotationTypeElementDoc


1 /*
2  * @(#)AnnotationTypeElementDoc.java 1.3 04/04/08
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.javadoc;
9
10
11 /**
12  * Represents an element of an annotation type.
13  *
14  * @author Scott Seligman
15  * @version 1.3 04/04/08
16  * @since 1.5
17  */

18 public interface AnnotationTypeElementDoc extends MethodDoc {
19
20     /**
21      * Returns the default value of this element.
22      * Returns null if this element has no default.
23      *
24      * @return the default value of this element.
25      */

26     AnnotationValue defaultValue();
27 }
28
Popular Tags