Package org.gradle.api.reporting
Interface ConfigurableReport
-
- All Superinterfaces:
Configurable<Report>
,Report
- All Known Subinterfaces:
CustomizableHtmlReport
,DirectoryReport
,JUnitXmlReport
,SingleFileReport
public interface ConfigurableReport extends Report
A file based report to be created with a configurable destination. Note this is a legacy type which offers no additional functionality. Reports should implementReport
directly instead of using this interface.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.gradle.api.reporting.Report
Report.OutputType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
setDestination(java.io.File file)
Deprecated.UseReport.getOutputLocation()
.set() instead.-
Methods inherited from interface org.gradle.util.Configurable
configure
-
Methods inherited from interface org.gradle.api.reporting.Report
getDisplayName, getName, getOutputLocation, getOutputType, getRequired
-
-
-
-
Method Detail
-
setDestination
@Deprecated void setDestination(java.io.File file)
Deprecated.UseReport.getOutputLocation()
.set() instead. This method will be removed in Gradle 9.0.Sets the destination for the report.- Parameters:
file
- The destination for the report.- Since:
- 4.0
- See Also:
Report.getOutputLocation()
-
-