Package org.gradle.api.plugins.quality
Interface JDependReports
-
- All Superinterfaces:
Collection<SingleFileReport>
,org.gradle.util.Configurable<ReportContainer<SingleFileReport>>
,DomainObjectCollection<SingleFileReport>
,Iterable<SingleFileReport>
,NamedDomainObjectCollection<SingleFileReport>
,NamedDomainObjectSet<SingleFileReport>
,ReportContainer<SingleFileReport>
,Set<SingleFileReport>
public interface JDependReports extends ReportContainer<SingleFileReport>
The reporting configuration for theJDepend
task. Exactly one of the XML or HTML reports can be enabled when the task executes. If more than one or none 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 Modifier and Type Method Description SingleFileReport
getText()
The jdepend text reportSingleFileReport
getXml()
The jdepend XML report-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface org.gradle.api.DomainObjectCollection
all, all, whenObjectAdded, whenObjectAdded, whenObjectRemoved, whenObjectRemoved, withType, withType
-
Methods inherited from interface org.gradle.api.NamedDomainObjectCollection
add, addAll, addRule, addRule, addRule, findByName, getAt, getByName, getByName, getByName
-
Methods inherited from interface org.gradle.api.NamedDomainObjectSet
findAll, matching, matching, withType
-
Methods inherited from interface org.gradle.api.reporting.ReportContainer
getAsMap, getEnabled, getEnabledDirectoryReportDestinations, getEnabledFileReportDestinations, getEnabledReportNames, getNamer, getNames, getRules, isEmpty
-
-
-
-
Method Detail
-
getXml
@Internal SingleFileReport getXml()
The jdepend XML report- Returns:
- The jdepend XML report
-
getText
@Internal SingleFileReport getText()
The jdepend text report- Returns:
- The jdepend text report
-
-