net.cscott.gjdoc
public interface DocErrorReporter
DocErrorReporter
interface provides error, warning, and
notice printing.Version: $Id: DocErrorReporter.java,v 1.2 2003/03/23 02:47:20 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.