-
public interface Reporter
This interface provides error, warning and notice reporting.- Since:
- 9
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
print(Diagnostic.Kind kind, DocTreePath path, String msg)
Print an error message and increment error count.void
print(Diagnostic.Kind kind, String msg)
Print error message and increment error count.void
print(Diagnostic.Kind kind, Element e, String msg)
Print an error message and increment error count.
-
-
-
Method Detail
print
void print(Diagnostic.Kind kind, String msg)
Print error message and increment error count.- Parameters:
kind
- specify the diagnostic kindmsg
- message to print
print
void print(Diagnostic.Kind kind, DocTreePath path, String msg)
Print an error message and increment error count.- Parameters:
kind
- specify the diagnostic kindpath
- the DocTreePath of item where the error occursmsg
- message to print
print
void print(Diagnostic.Kind kind, Element e, String msg)
Print an error message and increment error count.- Parameters:
kind
- specify the diagnostic kinde
- the Element for which the error occursmsg
- message to print
-