net.cscott.sinjdoc
public interface DocErrorReporter
DocErrorReporter
interface provides error, warning, and
notice printing.
Version: $Id: DocErrorReporter.java,v 1.3 2003/05/08 03:54:25 cananian Exp $
See Also: com.sun.javadoc.DocErrorReporter
Method Summary | |
---|---|
void | printError(String msg)
Print error message and increment error count. |
void | printError(SourcePosition pos, String msg)
Print error message and increment error count. |
void | printNotice(String msg)
Print a message. |
void | printNotice(SourcePosition pos, String msg)
Print a message. |
void | printWarning(String msg)
Print warning message and increment warning count. |
void | printWarning(SourcePosition pos, String msg)
Print warning message and increment warning count. |
Parameters: msg the message to print.
Parameters: pos the position item where the error occurs. msg the message to print.
Parameters: msg the message to print.
Parameters: pos the position item where the message occurs. msg the message to print.
Parameters: msg the message to print.
Parameters: pos the position item where the warning occurs. msg the message to print.