FileDocCategorySizeDatePackage
Report.javaAPI DocApache Lucene 2.2.01646Sat Jun 16 22:21:00 BST 2007org.apache.lucene.benchmark.byTask.stats

Report

public class Report extends Object
Textual report of current statistics.

Fields Summary
private String
text
private int
size
private int
outOf
private int
reported
Constructors Summary
public Report(String text, int size, int reported, int outOf)

    this.text = text;
    this.size = size;
    this.reported = reported;
    this.outOf = outOf;
  
Methods Summary
public intgetOutOf()
Returns total number of stats points when this report was created.

    return outOf;
  
public intgetReported()
Returns number of stats points represented in this report.

    return reported;
  
public intgetSize()
Returns number of lines in the reoprt.

    return size;
  
public java.lang.StringgetText()
Returns the report text.

    return text;