Reportpublic 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 |
---|
Report(String text, int size, int reported, int outOf)
this.text = text;
this.size = size;
this.reported = reported;
this.outOf = outOf;
|
Methods Summary |
---|
public int | getOutOf()Returns total number of stats points when this report was created.
return outOf;
| public int | getReported()Returns number of stats points represented in this report.
return reported;
| public int | getSize()Returns number of lines in the reoprt.
return size;
| public java.lang.String | getText()Returns the report text.
return text;
|
|