-
- All Known Subinterfaces:
RootDoc
@Deprecated public interface DocErrorReporter
Deprecated.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 Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
printError(SourcePosition pos, String msg)
Deprecated.Print an error message and increment error count.void
printError(String msg)
Deprecated.Print error message and increment error count.void
printNotice(SourcePosition pos, String msg)
Deprecated.Print a message.void
printNotice(String msg)
Deprecated.Print a message.void
printWarning(SourcePosition pos, String msg)
Deprecated.Print warning message and increment warning count.void
printWarning(String msg)
Deprecated.Print warning message and increment warning count.
-
-
-
Method Detail
-
printError
void printError(String msg)
Deprecated.Print error message and increment error count.- Parameters:
msg
- message to print
-
printError
void printError(SourcePosition pos, String msg)
Deprecated.Print an error message and increment error count.- Parameters:
pos
- the position item where the error occursmsg
- message to print- Since:
- 1.4
-
printWarning
void printWarning(String msg)
Deprecated.Print warning message and increment warning count.- Parameters:
msg
- message to print
-
printWarning
void printWarning(SourcePosition pos, String msg)
Deprecated.Print warning message and increment warning count.- Parameters:
pos
- the position item where the warning occursmsg
- message to print- Since:
- 1.4
-
printNotice
void printNotice(String msg)
Deprecated.Print a message.- Parameters:
msg
- message to print
-
printNotice
void printNotice(SourcePosition pos, String msg)
Deprecated.Print a message.- Parameters:
pos
- the position item where the message occursmsg
- message to print- Since:
- 1.4
-
-