-
- Enclosing interface:
- JavaCompiler
public static interface JavaCompiler.CompilationTask extends Callable<Boolean>
Interface representing a future for a compilation task. The compilation task has not yet started. To start the task, call the call method.Before calling the call method, additional aspects of the task can be configured, for example, by calling the setProcessors method.
-
-
Method Summary
Methods Modifier and Type Method and Description Boolean
call()
Performs this compilation task.void
setLocale(Locale locale)
Set the locale to be applied when formatting diagnostics and other localized data.void
setProcessors(Iterable<? extends Processor> processors)
Sets processors (for annotation processing).
-
-
-
Method Detail
-
setProcessors
void setProcessors(Iterable<? extends Processor> processors)
Sets processors (for annotation processing). This will bypass the normal discovery mechanism.- Parameters:
processors
- processors (for annotation processing)- Throws:
IllegalStateException
- if the task has started
-
setLocale
void setLocale(Locale locale)
Set the locale to be applied when formatting diagnostics and other localized data.- Parameters:
locale
- the locale to apply;null
means apply no locale- Throws:
IllegalStateException
- if the task has started
-
call
Boolean call()
Performs this compilation task. The compilation may only be performed once. Subsequent calls to this method throw IllegalStateException.- Specified by:
call
in interfaceCallable<Boolean>
- Returns:
- true if and only all the files compiled without errors; false otherwise
- Throws:
RuntimeException
- if an unrecoverable error occurred in a user-supplied component. The cause will be the error in user code.IllegalStateException
- if called more than once
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-javax/tools/javacompiler.compilationtask.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.