javax.annotation.processing |
Facilities for declaring annotation processors and for
allowing annotation processors to communicate with an annotation processing
tool environment.
Unless otherwise specified in a particular implementation, the
collections returned by methods in this package should be expected
to be unmodifiable by the caller and unsafe for concurrent access.
Unless otherwise specified, methods in this package will throw
a
NullPointerException if given a
null argument.
author: Joseph D. |
Java Source File Name | Type | Comment |
AbstractProcessor.java | Class | An abstract annotation processor designed to be a convenient
superclass for most concrete annotation processors. |
Completion.java | Interface | A suggested
for an
annotation. |
Completions.java | Class | Utility class for assembling
Completion objects.
author: Joseph D. |
Filer.java | Interface | This interface supports the creation of new files by an annotation
processor. |
FilerException.java | Class | Indicates a
Filer detected an attempt to open a file that
would violate the guarantees provided by the
Filer . |
Messager.java | Interface | A
Messager provides the way for an annotation processor to
report error messages, warnings, and other notices. |
package-info.java | | |
ProcessingEnvironment.java | Interface | An annotation processing tool framework will
so the processor can use facilities
provided by the framework to write new files, report error
messages, and find other utilities.
Third parties may wish to provide value-add wrappers around the
facility objects from this interface, for example a
Filer extension that allows multiple processors to coordinate writing out
a single source file. |
Processor.java | Interface | The interface for an annotation processor.
Annotation processing happens in a sequence of
. |
RoundEnvironment.java | Interface | An annotation processing tool framework will
so that the processor can query for
information about a round of annotation processing.
author: Joseph D. |
SupportedAnnotationTypes.java | Annotation | An annotation used to indicate what annotation types an annotation
processor supports. |
SupportedOptions.java | Annotation | An annotation used to indicate what options an annotation processor
supports. |
SupportedSourceVersion.java | Annotation | An annotation used to indicate the latest source version an
annotation processor supports. |