public interface IConsole
| Modifier and Type | Method and Description |
|---|---|
java.io.PrintStream |
getErr()
Returns
PrintStream that prints messages with error priority. |
java.io.PrintStream |
getInfo()
Returns
PrintStream that prints messages with info priority. |
java.io.PrintStream |
getNotif()
Returns
PrintStream that prints messages with notification priority. |
java.io.PrintStream |
getOut()
Returns
PrintStream that prints messages with normal priority |
java.io.PrintStream |
getWarn()
Returns
PrintStream that prints messages with warning priority. |
void |
setMaxMessages(int maxNumber)
Sets the maximum number of messages.
|
java.io.PrintStream getOut()
PrintStream that prints messages with normal priorityPrintStream to print messagesjava.io.PrintStream getErr()
PrintStream that prints messages with error priority. Messages are shown in red colorPrintStream to print messagesjava.io.PrintStream getWarn()
PrintStream that prints messages with warning priority. Messages by default are shown in yellow colorPrintStream to print messagesjava.io.PrintStream getInfo()
PrintStream that prints messages with info priority. Messages by default are shown in green colorPrintStream to print messagesjava.io.PrintStream getNotif()
PrintStream that prints messages with notification priority. Messages by default are shown in blue colorPrintStream to print messagesvoid setMaxMessages(int maxNumber)
maxNumber - maximum number of messages in Messages table. Passing -1 makes it unrestricted.Copyright © 2025. All rights reserved.