Package org.gradle.api.plugins.quality
Interface FindBugsReports
-
- All Superinterfaces:
Collection<SingleFileReport>
,org.gradle.util.Configurable<ReportContainer<SingleFileReport>>
,DomainObjectCollection<SingleFileReport>
,Iterable<SingleFileReport>
,NamedDomainObjectCollection<SingleFileReport>
,NamedDomainObjectSet<SingleFileReport>
,ReportContainer<SingleFileReport>
,Set<SingleFileReport>
@Deprecated public interface FindBugsReports extends ReportContainer<SingleFileReport>
Deprecated.FindBugs is unmaintained and does not support bytecode compiled for Java 9 and above.The reporting configuration for theFindBugs
task. Only one of the reports can be enabled when the task executes. If more than one is enabled, anInvalidUserDataException
will be thrown.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.gradle.api.reporting.ReportContainer
ReportContainer.ImmutableViolationException
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description SingleFileReport
getEmacs()
Deprecated.The findbugs Emacs reportCustomizableHtmlReport
getHtml()
Deprecated.The findbugs HTML reportSingleFileReport
getText()
Deprecated.The findbugs Text reportFindBugsXmlReport
getXml()
Deprecated.The findbugs XML report-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface org.gradle.api.DomainObjectCollection
addAllLater, addLater, all, all, configureEach, whenObjectAdded, whenObjectAdded, whenObjectRemoved, whenObjectRemoved, withType, withType
-
Methods inherited from interface org.gradle.api.NamedDomainObjectCollection
add, addAll, addRule, addRule, addRule, findByName, getAt, getByName, getByName, getByName, getCollectionSchema, named, named, named, named
-
Methods inherited from interface org.gradle.api.NamedDomainObjectSet
findAll, matching, matching, withType
-
Methods inherited from interface org.gradle.api.reporting.ReportContainer
getAsMap, getEnabled, getEnabledReports, getNamer, getNames, getRules, isEmpty
-
-
-
-
Method Detail
-
getXml
@Internal FindBugsXmlReport getXml()
Deprecated.The findbugs XML report- Returns:
- The findbugs XML report
-
getHtml
@Internal CustomizableHtmlReport getHtml()
Deprecated.The findbugs HTML report- Returns:
- The findbugs HTML report
-
getText
@Internal SingleFileReport getText()
Deprecated.The findbugs Text report- Returns:
- The findbugs Text report
-
getEmacs
@Internal SingleFileReport getEmacs()
Deprecated.The findbugs Emacs report- Returns:
- The findbugs Emacs report
-
-