Package org.gradle.api.reporting
Interface CustomizableHtmlReport
-
- All Superinterfaces:
org.gradle.util.Configurable<Report>
,ConfigurableReport
,Report
,Serializable
,SingleFileReport
@Incubating public interface CustomizableHtmlReport extends SingleFileReport
A HTML Report whose generation can be customized with a XSLT stylesheet.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.gradle.api.reporting.Report
Report.OutputType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TextResource
getStylesheet()
The stylesheet to use to generate the HTML report.void
setStylesheet(TextResource stylesheet)
The stylesheet to use to generate the report.-
Methods inherited from interface org.gradle.api.reporting.ConfigurableReport
setDestination, setDestination, setDestination, setEnabled, setEnabled
-
Methods inherited from interface org.gradle.api.reporting.Report
getDisplayName, getName, isEnabled
-
Methods inherited from interface org.gradle.api.reporting.SingleFileReport
getDestination, getOutputType
-
-
-
-
Method Detail
-
getStylesheet
TextResource getStylesheet()
The stylesheet to use to generate the HTML report.- Returns:
- the stylesheet to use to generate the HTML report
-
setStylesheet
void setStylesheet(TextResource stylesheet)
The stylesheet to use to generate the report.- Parameters:
stylesheet
- the stylesheet to use to generate the HTML report
-
-