net.cscott.sinjdoc

Interface DocErrorReporter

public interface DocErrorReporter

The DocErrorReporter interface provides error, warning, and notice printing.

Version: $Id: DocErrorReporter.java,v 1.3 2003/05/08 03:54:25 cananian Exp $

Author: C. Scott Ananian (cscott@cscott.net)

See Also: com.sun.javadoc.DocErrorReporter

Method Summary
voidprintError(String msg)
Print error message and increment error count.
voidprintError(SourcePosition pos, String msg)
Print error message and increment error count.
voidprintNotice(String msg)
Print a message.
voidprintNotice(SourcePosition pos, String msg)
Print a message.
voidprintWarning(String msg)
Print warning message and increment warning count.
voidprintWarning(SourcePosition pos, String msg)
Print warning message and increment warning count.

Method Detail

printError

public void printError(String msg)
Print error message and increment error count.

Parameters: msg the message to print.

printError

public void printError(SourcePosition pos, String msg)
Print error message and increment error count.

Parameters: pos the position item where the error occurs. msg the message to print.

printNotice

public void printNotice(String msg)
Print a message.

Parameters: msg the message to print.

printNotice

public void printNotice(SourcePosition pos, String msg)
Print a message.

Parameters: pos the position item where the message occurs. msg the message to print.

printWarning

public void printWarning(String msg)
Print warning message and increment warning count.

Parameters: msg the message to print.

printWarning

public void printWarning(SourcePosition pos, String msg)
Print warning message and increment warning count.

Parameters: pos the position item where the warning occurs. msg the message to print.

Copyright © 2003 C. Scott Ananian