Class LogEntry

  • All Implemented Interfaces:
    java.lang.Comparable<LogEntry>

    public class LogEntry
    extends java.lang.Object
    implements java.lang.Comparable<LogEntry>
    Log entry of an EventLogger.
    Since:
    6.0.0
    Author:
    Clément Fournier
    • Method Detail

      • isWasExamined

        public boolean isWasExamined()
      • setExamined

        public void setExamined​(boolean wasExamined)
      • wasExaminedProperty

        public org.reactfx.value.Var<java.lang.Boolean> wasExaminedProperty()
      • getMessage

        public java.lang.String getMessage()
      • getTimestamp

        public java.util.Date getTimestamp()
      • compareTo

        public int compareTo​(LogEntry o)
        Specified by:
        compareTo in interface java.lang.Comparable<LogEntry>
      • getDetails

        public java.lang.String getDetails()
      • createUserExceptionEntry

        public static LogEntry createUserExceptionEntry​(java.lang.Throwable thrown,
                                                        LogEntry.Category cat)
      • createInternalExceptionEntry

        public static LogEntry createInternalExceptionEntry​(java.lang.Throwable thrown)
      • createInternalDebugEntry

        public static LogEntry createInternalDebugEntry​(java.lang.String shortMessage,
                                                        java.lang.String details)
      • createDataEntry

        public static <T> net.sourceforge.pmd.util.fxdesigner.app.LogEntry.LogEntryWithData<T> createDataEntry​(T data,
                                                                                                               LogEntry.Category category,
                                                                                                               java.lang.String details)