Example usage for Java javax.tools StandardJavaFileManager fields, constructors, methods, implement or subclass
The text is from its open source code.
void | close() Releases any resources opened by this file manager directly or indirectly. |
JavaFileObject | getJavaFileForInput(Location location, String className, Kind kind) Returns a JavaFileObject file object for input representing the specified class of the specified kind in the given package-oriented location. |
Iterable extends JavaFileObject> | getJavaFileObjects(File... files) Returns file objects representing the given files. |
Iterable extends JavaFileObject> | getJavaFileObjects(Path... paths) Returns file objects representing the given paths. |
Iterable extends JavaFileObject> | getJavaFileObjects(String... names) Returns file objects representing the given file names. |
Iterable extends JavaFileObject> | getJavaFileObjectsFromFiles(Iterable extends File> files) Returns file objects representing the given files. |
Iterable extends JavaFileObject> | getJavaFileObjectsFromStrings(Iterable Returns file objects representing the given file names. |
Iterable | list(Location location, String packageName, Set Lists all file objects matching the given criteria in the given package-oriented location. |
void | setLocation(Location location, Iterable extends File> files) Associates the given search path with the given location. |