| javax.tools.DiagnosticListener
DiagnosticListener | public interface DiagnosticListener (Code) | | Interface for receiving diagnostics from tools.
< Parameters: S - > the type of source objects used by diagnostics receivedby this listener author: Jonathan Gibbons author: Peter von der Ahé since: 1.6 |
Method Summary | |
void | report(Diagnostic<? extends S> diagnostic) Invoked when a problem is found. |
report | void report(Diagnostic<? extends S> diagnostic)(Code) | | Invoked when a problem is found.
Parameters: diagnostic - a diagnostic representing the problem thatwas found throws: NullPointerException - if the diagnostic argument is null and the implementation cannot handle null arguments |
|
|