Fine!
This really gives me all classes, not just annotated ones:
@SupportedAnnotationTypes("*")
The specification of this annotation reads:
[...] Finally, "*" by itself represents the set of all annotation types,
including the empty set. Note that a processor should not claim "*"
unless it is actually processing all files [...]
Tested, working !
source
share