| org.archive.util.Reporter
All known Subclasses: org.archive.crawler.frontier.AdaptiveRevisitQueueList, org.archive.crawler.framework.ToePool, org.archive.crawler.framework.CrawlController, org.archive.crawler.frontier.WorkQueue, org.archive.crawler.framework.ToeThread, org.archive.crawler.datamodel.CandidateURI,
Reporter | public interface Reporter (Code) | | author: stack version: $Date: 2006-09-20 22:40:21 +0000 (Wed, 20 Sep 2006) $, $Revision: 4644 $ |
getReports | public String[] getReports()(Code) | | Get an array of report names offered by this Reporter.
A name in brackets indicates a free-form String,
in accordance with the informal description inside
the brackets, may yield a useful report.
String array of report names, empty if there is onlyone report type |
reportTo | public void reportTo(String name, PrintWriter writer)(Code) | | Make a report of the given name to the passed-in Writer,
If null, give the default report.
Parameters: writer - to receive report |
reportTo | public void reportTo(PrintWriter writer) throws IOException(Code) | | Make a default report to the passed-in Writer. Should
be equivalent to reportTo(null, writer)
Parameters: writer - to receive report |
singleLineLegend | public String singleLineLegend()(Code) | | Return a legend for the single-line summary report as a String.
String single-line summary legend |
singleLineReport | public String singleLineReport()(Code) | | Return a short single-line summary report as a String.
String single-line summary report |
singleLineReportTo | public void singleLineReportTo(PrintWriter writer) throws IOException(Code) | | Make a single-line summary report to the passed-in writer
Parameters: writer - to receive report |
|
|