Uses of Interface
logahawk.formatters.MessageFormatter

Packages that use MessageFormatter
logahawk.formatters   
logahawk.listeners   
logahawk.swing   
 

Uses of MessageFormatter in logahawk.formatters
 

Classes in logahawk.formatters that implement MessageFormatter
 class HashedMessageFormatter
          Calculates a hash of the log message, and prepends that has to the message.
 class RollingHashedMessageFormatter
          Hashes log messages using a rolling hash -- that is the hash of the previous message is part of the hash for the following hash.
 class SimpleMessageFormatter
          A very simple MessageFormatter that does not output the time of the log message.
 class StandardMessageFormatter
          Provides the standard log formatting (default implementatons of LogMeta.
 class ThreadMessageFormatter
          Provides the log formatting of ThreadLogMeta, very similar to StandardMessageFormatter.
 

Fields in logahawk.formatters declared as MessageFormatter
protected  MessageFormatter HashedMessageFormatter.messageFormatter
           
 

Constructors in logahawk.formatters with parameters of type MessageFormatter
HashedMessageFormatter(MessageFormatter messageFormatter, MessageDigest messageDigest)
           
RollingHashedMessageFormatter(MessageFormatter messageFormatter, MessageDigest messageDigest)
           
 

Uses of MessageFormatter in logahawk.listeners
 

Fields in logahawk.listeners declared as MessageFormatter
protected  MessageFormatter AppendableListener.formatter
           
protected  MessageFormatter JavaLoggerListener.formatter
           
protected  MessageFormatter StreamListener.formatter
           
 

Constructors in logahawk.listeners with parameters of type MessageFormatter
AppendableListener(Appendable appendable, MessageFormatter formatter)
           
ConsoleListener(MessageFormatter formatter)
           
JavaLoggerListener(Logger logger, MessageFormatter formatter)
           
JavaLoggerListener(String name, MessageFormatter formatter)
           
StreamListener(OutputStream out, MessageFormatter formatter)
           
StringBuilderListener(MessageFormatter formatter)
           
StringBuilderListener(StringBuilder builder, MessageFormatter formatter)
           
WriterListener(Writer writer, MessageFormatter formatter)
           
 

Uses of MessageFormatter in logahawk.swing
 

Constructors in logahawk.swing with parameters of type MessageFormatter
JLogViewer(MessageFormatter messageFormatter)