Package org.gradle.api.reporting
Interface Report
- All Superinterfaces:
Configurable<Report>
- All Known Subinterfaces:
ConfigurableReport
,CustomizableHtmlReport
,DirectoryReport
,JUnitXmlReport
,SingleFileReport
A file based report to be created.
Tasks that produce reports expose instances of this type for configuration via the Reporting
interface.
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic enum
The type of output the report produces -
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionA more descriptive name of this report.getName()
The symbolic name of this report.Property<? extends FileSystemLocation>
The location on the filesystem to generate the report to.The type of output that the report generates.A flag that determines whether this report should be generated or not.Methods inherited from interface org.gradle.util.Configurable
configure
-
Field Details
-
NAMER
-
-
Method Details
-
getName
The symbolic name of this report.The name of the report usually indicates the format (e.g. XML, HTML etc.) but can be anything.
When part of a
ReportContainer
, reports are accessed via their name. That is, given a report container variable namedreports
containing a report who'sgetName()
returns"html"
, the report could be accessed via:reports.html
- Returns:
- The name of this report.
-
getDisplayName
A more descriptive name of this report. Used when the report is referenced for end users.- Returns:
- A more descriptive name of this report.
-
getRequired
A flag that determines whether this report should be generated or not.- Since:
- 6.1
-
getOutputLocation
@Internal("Implementations need to add the correct annotation, @OutputDirectory or @OutputFile") Property<? extends FileSystemLocation> getOutputLocation()The location on the filesystem to generate the report to.- Since:
- 6.1
-
getOutputType
The type of output that the report generates.- Returns:
- The type of output that the report generates.
-