Uses of Class
momelog.LogEvent

Packages that use LogEvent
momelog Package containing core classes of MoMELog logging framework. 
momelog.formatter Package containing Formatter implementation classes and classes used by them. 
momelog.listener Package containing LogListener implementation classes and classes used by them. 
 

Uses of LogEvent in momelog
 

Methods in momelog with parameters of type LogEvent
 String Formatter.format(LogEvent event)
          Converts given logging event to String.
abstract  void Formatter.format(LogEvent event, StringBuffer buffer)
          Abstract method intended to convert specified logging event to string and append it to the given StringBuffer.
 Object Formatter.formatAsObject(LogEvent event)
          General method intended to convert given logging event to Object.
 void LogListener.onLog(LogEvent event)
          Notifies LogListener implementation of logging event.
 

Uses of LogEvent in momelog.formatter
 

Methods in momelog.formatter with parameters of type LogEvent
 void PatternFormatter.format(LogEvent event, StringBuffer buffer)
          Converts specified logging event to the string based on conversion pattern and appends it to the given StringBuffer.
 

Uses of LogEvent in momelog.listener
 

Methods in momelog.listener with parameters of type LogEvent
 void LogCanvas.onLog(LogEvent event)
          Formats given logging event by configured Formatter and appends it to the buffer.
 void LogFile.onLog(LogEvent event)
          Appends formatted logging lines to the destination file and then flushes the buffer.