CustomizableHtmlReport, DirectoryReport, FindBugsXmlReport, JUnitXmlReport, SingleFileReport@Incubating public interface ConfigurableReport extends Report
Report.OutputType| Modifier and Type | Method | Description |
|---|---|---|
void |
setDestination(java.io.File file) |
Sets the destination for the report.
|
void |
setDestination(java.lang.Object file) |
Deprecated.
|
void |
setDestination(Provider<java.io.File> provider) |
Sets the destination for the report.
|
void |
setEnabled(boolean enabled) |
Whether or not this report should be generated by whatever generates it.
|
void |
setEnabled(Provider<java.lang.Boolean> enabled) |
Whether or not this report should be generated by whatever generates it.
|
getDestination, getDisplayName, getName, getOutputType, isEnabledvoid setEnabled(boolean enabled)
setEnabled in interface Reportenabled - Whether or not this report should be generated by whatever generates it.Report.isEnabled()void setEnabled(Provider<java.lang.Boolean> enabled)
enabled - Provider for indicating whether or not this report should be generated by whatever generates it.Report.isEnabled()@Deprecated void setDestination(java.lang.Object file)
setDestination(java.io.File) and setDestination(org.gradle.api.provider.Provider).Project.file(Object).file - The destination for the report.Report.getDestination()void setDestination(java.io.File file)
file - The destination for the report.Report.getDestination()void setDestination(Provider<java.io.File> provider)
provider - The provider of the destination for the report.Report.getDestination()