public interface AnnotationProcessor
An annotation processor is notified of all types annotated with a specified annotation.
Modifier and Type | Method and Description |
---|---|
void |
handle(Class<?> annotatedType)
Handles a type annotated with the required annotation.
|
Class<? extends Annotation> |
requiredAnnotation()
The annotation that must be detected on type to be handled.
|
Class<? extends Annotation> requiredAnnotation()
The annotation that must be detected on type to be handled.
void handle(Class<?> annotatedType)
Handles a type annotated with the required annotation.
annotatedType
- the annotated typeCopyright © 2012-2015. All Rights Reserved.