Configurable<Report>
, Report
CustomizableHtmlReport
, DirectoryReport
, JUnitXmlReport
, SingleFileReport
public interface ConfigurableReport extends Report
Report.OutputType
Modifier and Type | Method | Description |
---|---|---|
void |
setDestination(java.io.File file) |
Deprecated.
Use
Report.getOutputLocation() .set() instead. |
void |
setDestination(Provider<java.io.File> provider) |
Deprecated.
Use
Report.getOutputLocation() .set() instead. |
void |
setEnabled(boolean enabled) |
Deprecated.
Use
Report.getRequired() .set() instead. |
void |
setEnabled(Provider<java.lang.Boolean> enabled) |
Deprecated.
Use
Report.getRequired() .set() instead. |
configure
getDestination, getDisplayName, getName, getOutputLocation, getOutputType, getRequired, isEnabled
@Deprecated void setEnabled(boolean enabled)
Report.getRequired()
.set() instead. This method will be removed in Gradle 8.0.setEnabled
in interface Report
enabled
- Whether or not this report should be generated by whatever generates it.Report.isEnabled()
@Deprecated void setEnabled(Provider<java.lang.Boolean> enabled)
Report.getRequired()
.set() instead. This method will be removed in Gradle 8.0.enabled
- Provider for indicating whether or not this report should be generated by whatever generates it.Report.isEnabled()
@Deprecated void setDestination(java.io.File file)
Report.getOutputLocation()
.set() instead. This method will be removed in Gradle 8.0.file
- The destination for the report.Report.getOutputLocation()
@Deprecated void setDestination(Provider<java.io.File> provider)
Report.getOutputLocation()
.set() instead. This method will be removed in Gradle 8.0.provider
- The provider of the destination for the report.Report.getOutputLocation()