See: Description
| Interface | Description |
|---|---|
| ApplicationLogger |
Provides a simple logging API that can be used by applications to output log messages to the user.
|
| Class | Description |
|---|---|
| AbstractApplicationLogger |
Implements basic functionality (especially method delegation) of a application logger.
|
| ApplicationLoggerDialog |
A dialog displaying the log send to an
ApplicationLogger. |
| ApplicationLoggerMessage |
Represents a message send to an
ApplicationLogger. |
| ApplicationLoggerParameterMap | |
| ConsoleApplicationLogger | |
| JTextAreaApplicationLogger |
This implementation of
ApplicationLogger appends all messages to a JTextArea. |
| MessageListApplicationLogger |
Implementation of
ApplicationLogger that stores all messages into a list. |
| MultipleApplicationLoggersAdapter |
This implementation of
ApplicationLogger delegates to a set of other classes implementing
this interface. |
| SwingDocumentApplicationLogger |
This implementation of
ApplicationLogger appends all messages to a Document. |
| TextFileApplicationLogger |
This implementation of
ApplicationLogger appends all log messages to a text file, where every
message is written to one line. |
| VoidApplicationLogger |
This implementation of
ApplicationLogger does not display or store the received messages anywhere. |
| Enum | Description |
|---|---|
| ApplicationLoggerMessageType |
Enumerates the different types of messages which can be send to an
ApplicationLogger. |
Classes in this package implement a simple logging API for messages of different types that an application can output to the user.