Short Description
The Gradle CheckResults Java-API.
Parent
Iteration
Facade
Type
External
Level
2

Syntax

Methods/Functions

public interface CheckResults {
    // return a description of what is checked
    // (e.g. "Missing Images Checker" or "Broken Cross-References Checker"
    public String description()

    // returns all findings/problems found during this check
    public  ArrayList<Finding> getFindings()
}