logahawk.listeners
Class ProxyListener

java.lang.Object
  extended by logahawk.listeners.ProxyListener
All Implemented Interfaces:
Listener
Direct Known Subclasses:
EventDispatchThreadListener, FailSafeListener, FilterListener, LengthTruncatingListener, LineTruncatingListener, SafeListener

public abstract class ProxyListener
extends Object
implements Listener

Abstract base class creating proxy Listener implementations. See Proxy Pattern for more details. This implementation exists for convenience, it is not required to be used by any implementation.


Field Summary
protected  Listener listener
          The proxied Listener.
 
Constructor Summary
protected ProxyListener(Listener listener)
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface logahawk.listeners.Listener
log
 

Field Detail

listener

protected final Listener listener
The proxied Listener.

Constructor Detail

ProxyListener

protected ProxyListener(Listener listener)