| java.lang.Object org.incava.analysis.Report org.incava.analysis.TerseReport
TerseReport | public class TerseReport extends Report (Code) | | Reports errors in a single line, AKA the format expected by Emacs (!c).
|
TerseReport | public TerseReport(Writer writer)(Code) | | Creates a terse report for the given writer.
Parameters: writer - The writer associated with this report. |
TerseReport | public TerseReport(OutputStream os)(Code) | | Creates a terse report for the given output stream.
Parameters: os - The output stream associated with this report. |
TerseReport | public TerseReport(Writer writer, String source)(Code) | | Creates a terse report for the given writer, and a string source.
Parameters: writer - The writer associated with this report. Parameters: source - The source code to which this report applies. |
TerseReport | public TerseReport(Writer writer, File file)(Code) | | Creates a terse report for the given writer, and a file source.
Parameters: writer - The writer associated with this report. Parameters: file - The file, containing source code, to which this report applies. |
TerseReport | public TerseReport(OutputStream os, String source)(Code) | | Creates a terse report for the given output stream, and string source.
Parameters: os - The output stream associated with this report. Parameters: source - The source code to which this report applies. |
TerseReport | public TerseReport(OutputStream os, File file)(Code) | | Creates a terse report for the given output stream, and file.
Parameters: os - The output stream associated with this report. Parameters: file - The file, containing source code, to which this report applies. |
toString | protected String toString(Violation violation)(Code) | | Returns the given violation, in single-line format. For example:
TerseReport.java:77:22:77:29: Undocumented protected method
Parameters: violation - The violation to represent as a single-line violation. The violation, in single-line format. |
|
|