Class LogEntry
- java.lang.Object
-
- net.sourceforge.pmd.util.fxdesigner.model.LogEntry
-
- All Implemented Interfaces:
java.lang.Comparable<LogEntry>
public class LogEntry extends java.lang.Object implements java.lang.Comparable<LogEntry>
Log entry of anEventLogger.- Since:
- 6.0.0
- Author:
- Clément Fournier
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classLogEntry.Category
-
Constructor Summary
Constructors Constructor Description LogEntry(java.lang.Throwable thrown, LogEntry.Category cat)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(LogEntry o)LogEntry.CategorygetCategory()java.lang.StringgetMessage()java.lang.StringgetStackTrace()java.lang.ThrowablegetThrown()java.util.DategetTimestamp()booleanisWasExamined()voidsetExamined(boolean wasExamined)org.reactfx.value.Var<java.lang.Boolean>wasExaminedProperty()
-
-
-
Constructor Detail
-
LogEntry
public LogEntry(java.lang.Throwable thrown, LogEntry.Category cat)
-
-
Method Detail
-
isWasExamined
public boolean isWasExamined()
-
setExamined
public void setExamined(boolean wasExamined)
-
wasExaminedProperty
public org.reactfx.value.Var<java.lang.Boolean> wasExaminedProperty()
-
getThrown
public java.lang.Throwable getThrown()
-
getMessage
public java.lang.String getMessage()
-
getCategory
public LogEntry.Category getCategory()
-
getStackTrace
public java.lang.String getStackTrace()
-
getTimestamp
public java.util.Date getTimestamp()
-
-