org.gradle.api.reporting
Interface SingleFileReport

All Superinterfaces:
org.gradle.util.Configurable<Report>, Report, Serializable

public interface SingleFileReport
extends Report

A report that is a single file.


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.gradle.api.reporting.Report
Report.OutputType
 
Field Summary
 
Fields inherited from interface org.gradle.api.reporting.Report
NAMER
 
Method Summary
 Report.OutputType getOutputType()
          Always returns Report.OutputType.FILE
 void setDestination(Object file)
          Sets the destination for the report.
 
Methods inherited from interface org.gradle.api.reporting.Report
getDestination, getName, isEnabled, setEnabled
 
Methods inherited from interface org.gradle.util.Configurable
configure
 

Method Detail

setDestination

void setDestination(Object file)
Sets the destination for the report. The file parameter is evaluated as per Project.file(Object).

Parameters:
file - The destination for the report.

getOutputType

Report.OutputType getOutputType()
Always returns Report.OutputType.FILE

Specified by:
getOutputType in interface Report
Returns:
Report.OutputType.FILE