Interface JavaCompileTaskOperationResult
- All Superinterfaces:
OperationResult
,TaskOperationResult
Describes the result of a
JavaCompile
task.
Currently, this result is only reported for successful tasks.
- Since:
- 5.1
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
The results of an annotation processor used during compilation. -
Method Summary
Modifier and TypeMethodDescriptionReturns results of used annotation processors, if available.Methods inherited from interface org.gradle.tooling.events.OperationResult
getEndTime, getStartTime
-
Method Details
-
getAnnotationProcessorResults
@Nullable List<JavaCompileTaskOperationResult.AnnotationProcessorResult> getAnnotationProcessorResults()Returns results of used annotation processors, if available.Details are only available if an instrumented compiler was used.
- Returns:
- details about used annotation processors;
null
if unknown.
-