public interface RunResults {
// returns results for all pages which have been checked
public ArrayList<SinglePageResults> getResultsForAllPages()
// how many pages were checked in this run?
public int nrOfPagesChecked()
// how many checks were performed in all?
public int nrOfChecksPerformedOnAllPages()
// how many findings (errors and issues) were found in all?
public int nrOfFindingsOnAllPages()
// how long took checking (in milliseconds)?
public Long checkingTookHowManyMillis()
}