Class LogEvent


  • public class LogEvent
    extends java.lang.Object
    Container to hold Log Event information.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      int entryType
      Type of entry, usually one of Event.LT_* constants
      java.lang.Throwable err
      Error related to event
      LogIDs logID
      Log ID, categorizing the event
      static int LT_ERROR  
      static int LT_INFORMATION  
      static int LT_WARNING  
      java.lang.Object[] relatedTo
      A list of events that this entry is related to
      java.lang.String text
      Text of the event
      java.util.Date timeStamp
      Date and Time this event occurred
    • Constructor Summary

      Constructors 
      Constructor Description
      LogEvent​(LogIDs logID, int entryType, java.lang.String text)  
      LogEvent​(LogIDs logID, int entryType, java.lang.String text, java.lang.Throwable e)  
      LogEvent​(LogIDs logID, java.lang.String text)  
      LogEvent​(LogIDs logID, java.lang.String text, java.lang.Throwable e)  
      LogEvent​(java.lang.Object[] relatedTo, LogIDs logID, int entryType, java.lang.String text)  
      LogEvent​(java.lang.Object[] relatedTo, LogIDs logID, int entryType, java.lang.String text, java.lang.Throwable e)  
      LogEvent​(java.lang.Object[] relatedTo, LogIDs logID, java.lang.String text)  
      LogEvent​(java.lang.Object[] relatedTo, LogIDs logID, java.lang.String text, java.lang.Throwable e)  
      LogEvent​(java.lang.Object relatedTo, LogIDs logID, int entryType, java.lang.String text)  
      LogEvent​(java.lang.Object relatedTo, LogIDs logID, java.lang.String text)  
      LogEvent​(java.lang.Object relatedTo, LogIDs logID, java.lang.String text, java.lang.Throwable e)  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • timeStamp

        public java.util.Date timeStamp
        Date and Time this event occurred
      • relatedTo

        public final java.lang.Object[] relatedTo
        A list of events that this entry is related to
      • logID

        public final LogIDs logID
        Log ID, categorizing the event
      • entryType

        public final int entryType
        Type of entry, usually one of Event.LT_* constants
      • text

        public java.lang.String text
        Text of the event
      • err

        public java.lang.Throwable err
        Error related to event
    • Constructor Detail

      • LogEvent

        public LogEvent​(java.lang.Object[] relatedTo,
                        LogIDs logID,
                        int entryType,
                        java.lang.String text)
      • LogEvent

        public LogEvent​(java.lang.Object relatedTo,
                        LogIDs logID,
                        int entryType,
                        java.lang.String text)
      • LogEvent

        public LogEvent​(LogIDs logID,
                        int entryType,
                        java.lang.String text)
      • LogEvent

        public LogEvent​(java.lang.Object[] relatedTo,
                        LogIDs logID,
                        java.lang.String text)
      • LogEvent

        public LogEvent​(java.lang.Object relatedTo,
                        LogIDs logID,
                        java.lang.String text)
      • LogEvent

        public LogEvent​(LogIDs logID,
                        java.lang.String text)
      • LogEvent

        public LogEvent​(java.lang.Object[] relatedTo,
                        LogIDs logID,
                        int entryType,
                        java.lang.String text,
                        java.lang.Throwable e)
      • LogEvent

        public LogEvent​(java.lang.Object[] relatedTo,
                        LogIDs logID,
                        java.lang.String text,
                        java.lang.Throwable e)
      • LogEvent

        public LogEvent​(java.lang.Object relatedTo,
                        LogIDs logID,
                        java.lang.String text,
                        java.lang.Throwable e)
      • LogEvent

        public LogEvent​(LogIDs logID,
                        int entryType,
                        java.lang.String text,
                        java.lang.Throwable e)
      • LogEvent

        public LogEvent​(LogIDs logID,
                        java.lang.String text,
                        java.lang.Throwable e)