Package org.gradle.api.reporting
Interface SingleFileReport
-
- All Superinterfaces:
Configurable<Report>
,ConfigurableReport
,Report
- All Known Subinterfaces:
CustomizableHtmlReport
public interface SingleFileReport extends ConfigurableReport
A report that is a single file.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.gradle.api.reporting.Report
Report.OutputType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RegularFileProperty
getOutputLocation()
The location on the filesystem to generate the report to.Report.OutputType
getOutputType()
Always returnsReport.OutputType.FILE
-
Methods inherited from interface org.gradle.util.Configurable
configure
-
Methods inherited from interface org.gradle.api.reporting.ConfigurableReport
setDestination
-
Methods inherited from interface org.gradle.api.reporting.Report
getDisplayName, getName, getRequired
-
-
-
-
Method Detail
-
getOutputLocation
@OutputFile RegularFileProperty getOutputLocation()
Description copied from interface:Report
The location on the filesystem to generate the report to.- Specified by:
getOutputLocation
in interfaceReport
-
getOutputType
Report.OutputType getOutputType()
Always returnsReport.OutputType.FILE
- Specified by:
getOutputType
in interfaceReport
- Returns:
Report.OutputType.FILE
-
-