Improved build.xml
[vimdoclet.git] / sample / java.lang.annotation.IncompleteAnnotationException.txt
blobf08a3a783450e20ffb0bc26d8194aba034a12d10
1 *java.lang.annotation.IncompleteAnnotationException* *IncompleteAnnotationException* 
3 public class IncompleteAnnotationException
4   extends    |java.lang.RuntimeException|
6 |java.lang.annotation.IncompleteAnnotationException_Description|
7 |java.lang.annotation.IncompleteAnnotationException_Fields|
8 |java.lang.annotation.IncompleteAnnotationException_Constructors|
9 |java.lang.annotation.IncompleteAnnotationException_Methods|
11 ================================================================================
13 *java.lang.annotation.IncompleteAnnotationException_Constructors*
14 |java.lang.annotation.IncompleteAnnotationException(Class,String)|Constructs an
16 *java.lang.annotation.IncompleteAnnotationException_Methods*
17 |java.lang.annotation.IncompleteAnnotationException.annotationType()|Returns th
18 |java.lang.annotation.IncompleteAnnotationException.elementName()|Returns the n
20 *java.lang.annotation.IncompleteAnnotationException_Description*
22 Thrown to indicate that a program has attempted to access an element of an 
23 annotation type that was added to the annotation type definition after the 
24 annotation was compiled (or serialized). This exception will not be thrown if 
25 the new element has a default value. 
28 *java.lang.annotation.IncompleteAnnotationException(Class,String)*
30 public IncompleteAnnotationException(
31   java.lang.Class annotationType,
32   java.lang.String elementName)
34 Constructs an IncompleteAnnotationException to indicate that the named element 
35 was missing from the specified annotation type. 
37     annotationType - the Class object for the annotation type 
38     elementName - the name of the missing element 
40 *java.lang.annotation.IncompleteAnnotationException.annotationType()*
42 public |java.lang.Class| annotationType()
44 Returns the Class object for the annotation type with the missing element. 
47     Returns: the Class object for the annotation type with the missing element 
48 *java.lang.annotation.IncompleteAnnotationException.elementName()*
50 public |java.lang.String| elementName()
52 Returns the name of the missing element. 
55     Returns: the name of the missing element