public class MessageWriter
extends java.lang.Object
MessageWriter
class provides methods for writting down information and errors
to the editor console.Constructor and Description |
---|
MessageWriter() |
Modifier and Type | Method and Description |
---|---|
static void |
eraseConsole()
Erases the editor console.
|
static void |
write(java.lang.String message)
Writes a normal information to the editor console.
|
static void |
writeEmphasis(java.lang.String message)
Writes an emphasis information to the editor console.
|
static void |
writeError(java.lang.String message)
Writes an error message to the editor console.
|
static void |
writeInfo(java.lang.String message)
Writes an information message to the editor console.
|
static void |
writeTitle(java.lang.String message)
Writes a title to the editor console.
|
static void |
writeWarning(java.lang.String message)
Writes a warning message to the editor console.
|
public static void write(java.lang.String message)
message
- the normal text message.public static void writeEmphasis(java.lang.String message)
message
- the normal text message.public static void writeTitle(java.lang.String message)
message
- the message containing title.public static void writeWarning(java.lang.String message)
message
- the message containing warning.public static void writeError(java.lang.String message)
message
- the message containing error.public static void writeInfo(java.lang.String message)
message
- the message containing information.public static void eraseConsole()