Package org.gradle.api.reporting
Interface SingleFileReport
-
- All Superinterfaces:
org.gradle.util.Configurable<Report>
,ConfigurableReport
,Report
,Serializable
- All Known Subinterfaces:
CustomizableHtmlReport
,FindBugsXmlReport
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 File
getDestination()
The location on the filesystem of the report when it is generated.Report.OutputType
getOutputType()
Always returnsReport.OutputType.FILE
-
Methods inherited from interface org.gradle.api.reporting.ConfigurableReport
setDestination, setDestination, setDestination, setEnabled, setEnabled
-
Methods inherited from interface org.gradle.api.reporting.Report
getDisplayName, getName, isEnabled
-
-
-
-
Method Detail
-
getDestination
File getDestination()
Description copied from interface:Report
The location on the filesystem of the report when it is generated.Depending on the
output type
of the report, this may point to a file or a directory.Subtypes may implement setters for the destination.
- Specified by:
getDestination
in interfaceReport
- Returns:
- The location on the filesystem of the report when it is generated
-
getOutputType
Report.OutputType getOutputType()
Always returnsReport.OutputType.FILE
- Specified by:
getOutputType
in interfaceReport
- Returns:
Report.OutputType.FILE
-
-