org.incava.analysis
public class TerseReport extends Report
Constructor Summary | |
---|---|
TerseReport(Writer writer)
Creates a terse report for the given writer.
| |
TerseReport(OutputStream os)
Creates a terse report for the given output stream.
| |
TerseReport(Writer writer, String source)
Creates a terse report for the given writer, and a string source.
| |
TerseReport(Writer writer, File file)
Creates a terse report for the given writer, and a file source.
| |
TerseReport(OutputStream os, String source)
Creates a terse report for the given output stream, and string source.
| |
TerseReport(OutputStream os, File file)
Creates a terse report for the given output stream, and file.
|
Method Summary | |
---|---|
protected String | toString(Violation violation)
Returns the given violation, in single-line format. |
Parameters: writer The writer associated with this report.
Parameters: os The output stream associated with this report.
Parameters: writer The writer associated with this report. source The source code to which this report applies.
Parameters: writer The writer associated with this report. file The file, containing source code, to which this report applies.
Parameters: os The output stream associated with this report. source The source code to which this report applies.
Parameters: os The output stream associated with this report. file The file, containing source code, to which this report applies.
TerseReport.java:77:22:77:29: Undocumented protected method
Parameters: violation The violation to represent as a single-line violation.
Returns: The violation, in single-line format.