java.lang.annotation
Class IncompleteAnnotationException

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.lang.Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable 
      extended by java.lang.Exception sample code for java.lang.Exception definition code for java.lang.Exception 
          extended by java.lang.RuntimeException sample code for java.lang.RuntimeException definition code for java.lang.RuntimeException 
              extended by java.lang.annotation.IncompleteAnnotationException
All Implemented Interfaces:
Serializable sample code for java.io.Serializable definition code for java.io.Serializable

public class IncompleteAnnotationException
extends RuntimeException sample code for java.lang.RuntimeException definition code for java.lang.RuntimeException

Thrown to indicate that a program has attempted to access an element of an annotation type that was added to the annotation type definition after the annotation was compiled (or serialized). This exception will not be thrown if the new element has a default value.

Since:
1.5
See Also:
Serialized Form

Constructor Summary
IncompleteAnnotationException sample code for java.lang.annotation.IncompleteAnnotationException.IncompleteAnnotationException(java.lang.Class, java.lang.String) definition code for java.lang.annotation.IncompleteAnnotationException.IncompleteAnnotationException(java.lang.Class, java.lang.String) (Class sample code for java.lang.Class definition code for java.lang.Class <? extends Annotation sample code for java.lang.annotation.Annotation definition code for java.lang.annotation.Annotation > annotationType, String sample code for java.lang.String definition code for java.lang.String  elementName)
          Constructs an IncompleteAnnotationException to indicate that the named element was missing from the specified annotation type.
 
Method Summary
 Class sample code for java.lang.Class definition code for java.lang.Class <? extends Annotation sample code for java.lang.annotation.Annotation definition code for java.lang.annotation.Annotation > annotationType sample code for java.lang.annotation.IncompleteAnnotationException.annotationType() definition code for java.lang.annotation.IncompleteAnnotationException.annotationType() ()
          Returns the Class object for the annotation type with the missing element.
 String sample code for java.lang.String definition code for java.lang.String elementName sample code for java.lang.annotation.IncompleteAnnotationException.elementName() definition code for java.lang.annotation.IncompleteAnnotationException.elementName() ()
          Returns the name of the missing element.
 
Methods inherited from class java.lang.Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable
fillInStackTrace sample code for java.lang.Throwable.fillInStackTrace() definition code for java.lang.Throwable.fillInStackTrace() , getCause sample code for java.lang.Throwable.getCause() definition code for java.lang.Throwable.getCause() , getLocalizedMessage sample code for java.lang.Throwable.getLocalizedMessage() definition code for java.lang.Throwable.getLocalizedMessage() , getMessage sample code for java.lang.Throwable.getMessage() definition code for java.lang.Throwable.getMessage() , getStackTrace sample code for java.lang.Throwable.getStackTrace() definition code for java.lang.Throwable.getStackTrace() , initCause sample code for java.lang.Throwable.initCause(java.lang.Throwable) definition code for java.lang.Throwable.initCause(java.lang.Throwable) , printStackTrace sample code for java.lang.Throwable.printStackTrace() definition code for java.lang.Throwable.printStackTrace() , printStackTrace sample code for java.lang.Throwable.printStackTrace(java.io.PrintStream) definition code for java.lang.Throwable.printStackTrace(java.io.PrintStream) , printStackTrace sample code for java.lang.Throwable.printStackTrace(java.io.PrintWriter) definition code for java.lang.Throwable.printStackTrace(java.io.PrintWriter) , setStackTrace sample code for java.lang.Throwable.setStackTrace(java.lang.StackTraceElement[]) definition code for java.lang.Throwable.setStackTrace(java.lang.StackTraceElement[]) , toString sample code for java.lang.Throwable.toString() definition code for java.lang.Throwable.toString()
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Constructor Detail

IncompleteAnnotationException sample code for java.lang.annotation.IncompleteAnnotationException(java.lang.Class<? extends java.lang.annotation.Annotation>, java.lang.String) definition code for java.lang.annotation.IncompleteAnnotationException(java.lang.Class<? extends java.lang.annotation.Annotation>, java.lang.String)

public IncompleteAnnotationException(Class sample code for java.lang.Class definition code for java.lang.Class <? extends Annotation sample code for java.lang.annotation.Annotation definition code for java.lang.annotation.Annotation > annotationType,
                                     String sample code for java.lang.String definition code for java.lang.String  elementName)
Constructs an IncompleteAnnotationException to indicate that the named element was missing from the specified annotation type.

Parameters:
annotationType - the Class object for the annotation type
elementName - the name of the missing element
Method Detail

annotationType sample code for java.lang.annotation.IncompleteAnnotationException.annotationType() definition code for java.lang.annotation.IncompleteAnnotationException.annotationType()

public Class sample code for java.lang.Class definition code for java.lang.Class <? extends Annotation sample code for java.lang.annotation.Annotation definition code for java.lang.annotation.Annotation > annotationType()
Returns the Class object for the annotation type with the missing element.

Returns:
the Class object for the annotation type with the missing element

elementName sample code for java.lang.annotation.IncompleteAnnotationException.elementName() definition code for java.lang.annotation.IncompleteAnnotationException.elementName()

public String sample code for java.lang.String definition code for java.lang.String  elementName()
Returns the name of the missing element.

Returns:
the name of the missing element