Java javax.tools StandardJavaFileManager fields, constructors, methods, implement or subclass

Example usage for Java javax.tools StandardJavaFileManager fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.tools StandardJavaFileManager.

The text is from its open source code.

Method

voidclose()
Releases any resources opened by this file manager directly or indirectly.
JavaFileObjectgetJavaFileForInput(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.
IterablegetJavaFileObjects(File... files)
Returns file objects representing the given files.
IterablegetJavaFileObjects(Path... paths)
Returns file objects representing the given paths.
IterablegetJavaFileObjects(String... names)
Returns file objects representing the given file names.
IterablegetJavaFileObjectsFromFiles(Iterable files)
Returns file objects representing the given files.
IterablegetJavaFileObjectsFromStrings(Iterable names)
Returns file objects representing the given file names.
Iterablelist(Location location, String packageName, Set kinds, boolean recurse)
Lists all file objects matching the given criteria in the given package-oriented location.
voidsetLocation(Location location, Iterable files)
Associates the given search path with the given location.