|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Listener | |
|---|---|
| logahawk.listeners | |
| logahawk.swing | |
| Uses of Listener in logahawk.listeners |
|---|
| Subinterfaces of Listener in logahawk.listeners | |
|---|---|
interface |
ListenerContainer
Defines a Listener that contains other Listener instances. |
| Classes in logahawk.listeners that implement Listener | |
|---|---|
class |
AppendableListener
Allows logging to any Appendable destination object, such as Writer, StringBuffer, or StringBuilder. |
class |
BufferedListener
A Listener implementation that buffers all log arguments (prior to any formatting). |
class |
ConsoleListener
This will output all log statements to the console. |
class |
DefaultListenerContainer
Default implementation of ListenerContainer. |
class |
FailSafeListener
A special Listener designed to handle exceptions thrown by the log(LogMeta, String) method. |
class |
FilterListener
A generic filtering Listener. |
class |
JavaLoggerListener
A Listener that uses the Java Logging API to perform the actual logging. |
class |
LengthTruncatingListener
Truncates long messages based on length, replacing the truncated text with an ellipsis (or other indicator). |
class |
LineTruncatingListener
Truncates long multi-line messages, replacing the truncated lines with an ellipsis (or other indicator). |
class |
MemoryListener
A simple Listener that stores all received logs as LogListenerEntry objects and stores them in
memory. |
class |
NullListener
Null Listener implementation, swallows all messages. |
class |
ProxyListener
Abstract base class creating proxy Listener implementations. |
class |
SafeListener
A special Listener will swallow any Exceptions thrown by the log(LogMeta, String)
method. |
class |
SeverityFilterListener
This wraps another Logger only filters out log requests whose Severity that are disabled. |
class |
StreamListener
A Listener that outputs log messages to the provided stream. |
class |
StringBuilderListener
A helper Listener that can write to a StringBuilder. |
class |
WriterListener
A helper Listener that can write to a Writer. |
| Fields in logahawk.listeners declared as Listener | |
|---|---|
protected Listener |
FailSafeListener.backup
|
protected Listener |
ProxyListener.listener
The proxied Listener. |
| Methods in logahawk.listeners with parameters of type Listener | |
|---|---|
void |
ListenerContainer.add(Listener... c)
Adds Listeners to the logger. |
| Constructors in logahawk.listeners with parameters of type Listener | |
|---|---|
FailSafeListener(Listener primary,
Listener backup,
LogMetaProvider logMetaProvider)
|
|
FilterListener(Listener listener,
FilterListener.Filter filter)
|
|
LengthTruncatingListener(Listener listener)
|
|
LengthTruncatingListener(Listener listener,
int maxLength)
|
|
LengthTruncatingListener(Listener listener,
int maxLength,
String suffix)
|
|
LineTruncatingListener(Listener listener)
|
|
LineTruncatingListener(Listener listener,
int maxLineLength)
|
|
LineTruncatingListener(Listener listener,
int maxLineLength,
String suffix)
|
|
ProxyListener(Listener listener)
|
|
SafeListener(Listener listener)
|
|
SeverityFilterListener(Listener listener)
|
|
SeverityFilterListener(Listener listener,
SeverityFilter severityFilter)
|
|
| Constructor parameters in logahawk.listeners with type arguments of type Listener | |
|---|---|
DefaultListenerContainer(Collection<Listener> c)
|
|
| Uses of Listener in logahawk.swing |
|---|
| Classes in logahawk.swing that implement Listener | |
|---|---|
class |
EventDispatchThreadListener
Ensures that the proxied Listener is only called on the EDT. |
class |
JLogViewer
Auto-scrolling text control for displaying log messages. |
class |
JOptionPaneListener
Displays a JOptionPane message dialog for each log message. |
| Constructors in logahawk.swing with parameters of type Listener | |
|---|---|
EventDispatchThreadListener(Listener listener)
|
|
EventDispatchThreadListener(Listener listener,
boolean block)
|
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||