 |
Gridarta Editor
|
Go to the documentation of this file.
20 package net.sf.gridarta.gui.dialog.errorview;
24 import org.jetbrains.annotations.NotNull;
30 @SuppressWarnings(
"UseOfSystemOutOrSystemErr")
41 System.err.println(
"Error: " + categoryName +
": " + message);
47 System.err.println(
"Error: " + categoryName +
":" + lineNo +
": " + message);
52 System.err.println(categoryName +
": " + message);
57 System.err.println(categoryName +
":" + lineNo +
": " + message);
void addError(@NotNull final ErrorViewCategory categoryName, @NotNull final String message)
Adds an error message.
void addWarning(@NotNull final ErrorViewCategory categoryName, @NotNull final String message)
Adds a warning message.
Base package of all Gridarta classes.
Interface for classes displaying error messages.
An ErrorView that reports all errors to the console.
Defines possible error categories for ErrorView instances.
void addWarning(@NotNull final ErrorViewCategory categoryName, final int lineNo, @NotNull final String message)
Adds a warning message.
void addError(@NotNull final ErrorViewCategory categoryName, final int lineNo, @NotNull final String message)
Adds an error message.
void waitDialog()
Waits until the dialog has been dismissed.
boolean hasErrors()
Whether at least one error message has been added.
boolean hasErrors
Whether errors have been reported.