public interface Reporter
This interface provides error, warning and notice reporting.
- Since:
- 9
- 
Method SummaryModifier and Type Method Description voidprint(Diagnostic.Kind kind, DocTreePath path, String msg)Print an error message and increment error count.voidprint(Diagnostic.Kind kind, String msg)Print error message and increment error count.voidprint(Diagnostic.Kind kind, Element e, String msg)Print an error message and increment error count.
- 
Method Details- 
printPrint error message and increment error count.- Parameters:
- kind- specify the diagnostic kind
- msg- message to print
 
- 
printPrint an error message and increment error count.- Parameters:
- kind- specify the diagnostic kind
- path- the DocTreePath of item where the error occurs
- msg- message to print
 
- 
printPrint an error message and increment error count.- Parameters:
- kind- specify the diagnostic kind
- e- the Element for which the error occurs
- msg- message to print
 
 
-