public interface AnnotatedElementHandler
| Modifier and Type | Method and Description |
|---|---|
void |
endElement(ElementType type,
AnnotatedElement element)
After annotations for an annotated element are processed, the
endElement is called with the annotated element value and its type
|
void |
startElement(ElementType type,
AnnotatedElement element)
Before annotations for an annotated element are processed, the
startElement is called with the annotated element value and its type
|
void startElement(ElementType type, AnnotatedElement element) throws AnnotationProcessorException
type - the annotated element type (class, field, method...)element - the annotated element we are starting to visit.AnnotationProcessorException;AnnotationProcessorExceptionvoid endElement(ElementType type, AnnotatedElement element) throws AnnotationProcessorException
type - the annotated element type (class, field, method...)element - the annotated element we are done visiting.AnnotationProcessorException;AnnotationProcessorExceptionCopyright © 2019. All rights reserved.