- 
- All Known Subinterfaces:
- RootDoc
 
 @Deprecated(since="9", forRemoval=true) public interface DocErrorReporter Deprecated, for removal: This API element is subject to removal in a future version.The declarations in this package have been superseded by those in the packagejdk.javadoc.doclet. For more information, see the Migration Guide in the documentation for that package.This interface provides error, warning and notice printing.- Since:
- 1.2
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidprintError(SourcePosition pos, String msg)Deprecated, for removal: This API element is subject to removal in a future version.Print an error message and increment error count.voidprintError(String msg)Deprecated, for removal: This API element is subject to removal in a future version.Print error message and increment error count.voidprintNotice(SourcePosition pos, String msg)Deprecated, for removal: This API element is subject to removal in a future version.Print a message.voidprintNotice(String msg)Deprecated, for removal: This API element is subject to removal in a future version.Print a message.voidprintWarning(SourcePosition pos, String msg)Deprecated, for removal: This API element is subject to removal in a future version.Print warning message and increment warning count.voidprintWarning(String msg)Deprecated, for removal: This API element is subject to removal in a future version.Print warning message and increment warning count.
 
- 
- 
- 
Method Detail- 
printErrorvoid printError(String msg) Deprecated, for removal: This API element is subject to removal in a future version.Print error message and increment error count.- Parameters:
- msg- message to print
 
 - 
printErrorvoid printError(SourcePosition pos, String msg) Deprecated, for removal: This API element is subject to removal in a future version.Print an error message and increment error count.- Parameters:
- pos- the position item where the error occurs
- msg- message to print
- Since:
- 1.4
 
 - 
printWarningvoid printWarning(String msg) Deprecated, for removal: This API element is subject to removal in a future version.Print warning message and increment warning count.- Parameters:
- msg- message to print
 
 - 
printWarningvoid printWarning(SourcePosition pos, String msg) Deprecated, for removal: This API element is subject to removal in a future version.Print warning message and increment warning count.- Parameters:
- pos- the position item where the warning occurs
- msg- message to print
- Since:
- 1.4
 
 - 
printNoticevoid printNotice(String msg) Deprecated, for removal: This API element is subject to removal in a future version.Print a message.- Parameters:
- msg- message to print
 
 - 
printNoticevoid printNotice(SourcePosition pos, String msg) Deprecated, for removal: This API element is subject to removal in a future version.Print a message.- Parameters:
- pos- the position item where the message occurs
- msg- message to print
- Since:
- 1.4
 
 
- 
 
-