public static interface BasicAnnotationProcessor.ProcessingStep
Modifier and Type | Method and Description |
---|---|
java.util.Set<? extends java.lang.Class<? extends java.lang.annotation.Annotation>> |
annotations()
The set of annotation types processed by this step.
|
java.util.Set<javax.lang.model.element.Element> |
process(com.google.common.collect.SetMultimap<java.lang.Class<? extends java.lang.annotation.Annotation>,javax.lang.model.element.Element> elementsByAnnotation)
The implementation of processing logic for the step.
|
java.util.Set<? extends java.lang.Class<? extends java.lang.annotation.Annotation>> annotations()
java.util.Set<javax.lang.model.element.Element> process(com.google.common.collect.SetMultimap<java.lang.Class<? extends java.lang.annotation.Annotation>,javax.lang.model.element.Element> elementsByAnnotation)
elementsByAnnotation
will be a subset of the set returned by annotations()
.