Groovy Documentation

org.gradle.api.plugins.quality
[Java] Interface FindBugsReports

org.gradle.api.NamedDomainObjectSet
  org.gradle.api.NamedDomainObjectCollection
      java.lang.Iterable
          org.gradle.api.DomainObjectCollection
              org.gradle.api.reporting.ReportContainer
                  java.util.Collection
                      org.gradle.api.plugins.quality.FindBugsReports
All Superinterfaces:
NamedDomainObjectSet, NamedDomainObjectCollection, Iterable, DomainObjectCollection, ReportContainer, Collection

public interface FindBugsReports
extends ReportContainer

The reporting configuration for the the FindBugs task. Only one of the xml or html reports can be enabled when the task executes. If more than one is enabled, an InvalidUserDataException will be thrown.


Method Summary
SingleFileReport getHtml()

The findbugs html report

SingleFileReport getXml()

The findbugs xml report

 
Methods inherited from interface ReportContainer
getEnabled
 
Methods inherited from interface NamedDomainObjectSet
findAll, matching, matching, withType
 
Methods inherited from interface org.gradle.util.Configurable
org.gradle.util.Configurable#configure(groovy.lang.Closure)
 

Method Detail

getHtml

public SingleFileReport getHtml()
The findbugs html report
Returns:
The findbugs html report


getXml

public SingleFileReport getXml()
The findbugs xml report
Returns:
The findbugs xml report


 

Gradle API 1.0-milestone-8