Package org.gradle.api.reporting
Interface ConfigurableReport
-
- All Superinterfaces:
org.gradle.util.Configurable<Report>
,Report
,Serializable
- All Known Subinterfaces:
CustomizableHtmlReport
,DirectoryReport
,FindBugsXmlReport
,JUnitXmlReport
,SingleFileReport
@Incubating public interface ConfigurableReport extends Report
A file based report to be created with a configurable destination.
-
-
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(File file)
Sets the destination for the report.void
setDestination(Object file)
Deprecated.void
setDestination(Provider<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<Boolean> enabled)
Whether or not this report should be generated by whatever generates it.-
Methods inherited from interface org.gradle.api.reporting.Report
getDestination, getDisplayName, getName, getOutputType, isEnabled
-
-
-
-
Method Detail
-
setEnabled
void setEnabled(boolean enabled)
Whether or not this report should be generated by whatever generates it.- Specified by:
setEnabled
in interfaceReport
- Parameters:
enabled
- Whether or not this report should be generated by whatever generates it.- Since:
- 4.0
- See Also:
Report.isEnabled()
-
setEnabled
void setEnabled(Provider<Boolean> enabled)
Whether or not this report should be generated by whatever generates it.- Parameters:
enabled
- Provider for indicating whether or not this report should be generated by whatever generates it.- Since:
- 4.0
- See Also:
Report.isEnabled()
-
setDestination
@Deprecated void setDestination(Object file)
Deprecated.Sets the destination for the report. The file parameter is evaluated as perProject.file(Object)
.- Parameters:
file
- The destination for the report.- See Also:
Report.getDestination()
-
setDestination
void setDestination(File file)
Sets the destination for the report.- Parameters:
file
- The destination for the report.- Since:
- 4.0
- See Also:
Report.getDestination()
-
setDestination
void setDestination(Provider<File> provider)
Sets the destination for the report.- Parameters:
provider
- The provider of the destination for the report.- Since:
- 4.0
- See Also:
Report.getDestination()
-
-