Class LogEntryEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.gurock.smartinspect.packets.logentry.LogEntryEvent
-
- All Implemented Interfaces:
Serializable
public final class LogEntryEvent extends EventObject
This class is used by the SmartInspectListener.onLogEntry event of the SmartInspect class.It has only one public class member named getLogEntry. This member is a method, which just returns the sent packet.
This class is fully threadsafe.
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description LogEntryEvent(Object source, LogEntry logEntry)Creates and initializes a LogEntryEvent instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LogEntrygetLogEntry()Returns the LogEntry packet, which has just been sent.-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Method Detail
-
getLogEntry
public LogEntry getLogEntry()
Returns the LogEntry packet, which has just been sent.- Returns:
- The LogEntry packet which has just been sent
-
-