public interface ClassFileProcessor extends Processor
AnnotatedProcessor
.Modifier and Type | Method and Description |
---|---|
static List<String> |
list(JavaFileManager fm)
Static method to get the list of
Class file names that have
been generated by the JavaFileManager . |
void |
process(Set<Class<?>> set,
JavaFileManager fm)
Processor alternate entry point. |
getCompletions, getSupportedAnnotationTypes, getSupportedOptions, getSupportedSourceVersion, init, process
void process(Set<Class<?>> set, JavaFileManager fm) throws Throwable
Processor
alternate entry point.set
- The Set
of Class
es to
analyze.fm
- The configured JavaFileManager
(for
writing output files).Throwable
- If the implementation throws a
Throwable
.static List<String> list(JavaFileManager fm) throws IOException
Class
file names that have
been generated by the JavaFileManager
.fm
- The configured JavaFileManager
.List
of class file names (String
s).IOException
- If the JavaFileManager
throws an
IOException
.Copyright © 2015–2020 Allen D. Ball. All rights reserved.