Package com.google.javascript.jscomp
Class PrintStreamErrorManager
java.lang.Object
com.google.javascript.jscomp.SortingErrorManager
com.google.javascript.jscomp.BasicErrorManager
com.google.javascript.jscomp.PrintStreamErrorManager
- All Implemented Interfaces:
ErrorHandler,ErrorManager
Deprecated.
, Please use the {#SortingErrorManger} with a {#PrintStreamErrorReportGenerator}
instead.
An error manager that prints errors and warnings to the print stream provided in addition to the
functionality of the
BasicErrorManager.
It collaborates with a SourceExcerptProvider via a MessageFormatter to display
error messages with source context.
-
Nested Class Summary
Nested classes/interfaces inherited from class com.google.javascript.jscomp.SortingErrorManager
SortingErrorManager.ErrorReportGenerator -
Constructor Summary
ConstructorsConstructorDescriptionPrintStreamErrorManager(MessageFormatter formatter, PrintStream stream) Deprecated.Creates an error manager.PrintStreamErrorManager(PrintStream stream) Deprecated.Creates an instance with a source-less error formatter. -
Method Summary
Modifier and TypeMethodDescriptionvoidprintln(CheckLevel level, JSError error) Deprecated.Print a message with a trailing new line.voidDeprecated.Print the summary of the compilation - number of errors and warnings.voidsetSummaryDetailLevel(int summaryDetailLevel) Deprecated.Methods inherited from class com.google.javascript.jscomp.BasicErrorManager
generateReportMethods inherited from class com.google.javascript.jscomp.SortingErrorManager
getErrorCount, getErrors, getTypedPercent, getWarningCount, getWarnings, hasHaltingErrors, report, setTypedPercentMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.google.javascript.jscomp.ErrorManager
shouldReportConformanceViolation
-
Constructor Details
-
PrintStreamErrorManager
Deprecated.Creates an error manager.- Parameters:
formatter- the message formatter used to format the messagesstream- the stream on which the errors and warnings should be printed. This class does not close the stream
-
PrintStreamErrorManager
Deprecated.Creates an instance with a source-less error formatter.
-
-
Method Details
-
println
Deprecated.Description copied from class:BasicErrorManagerPrint a message with a trailing new line. This method is called by theBasicErrorManager.generateReport()method when generating messages.- Specified by:
printlnin classBasicErrorManager
-
setSummaryDetailLevel
public void setSummaryDetailLevel(int summaryDetailLevel) Deprecated. -
printSummary
public void printSummary()Deprecated.Description copied from class:BasicErrorManagerPrint the summary of the compilation - number of errors and warnings.- Specified by:
printSummaryin classBasicErrorManager
-