Class FVEvent
- java.lang.Object
-
- ghidra.framework.main.logviewer.event.FVEvent
-
public class FVEvent extends java.lang.Object
Custom events to be used in conjunction with theFVEventListener
module. Users should construct an event, then fire it usingFVEventListener.send(FVEvent)
. Two items are passed along with each event: - TheeventType
attribute specifies the event that is being fired. - Thearg
is a generic object and can be populated with whatever is appropriate for the associated event. It's up to the receiver to understand how to parse it.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
FVEvent.EventType
-
Field Summary
Fields Modifier and Type Field Description java.lang.Object
arg
FVEvent.EventType
eventType
-
Constructor Summary
Constructors Constructor Description FVEvent(FVEvent.EventType eventType, java.lang.Object arg)
-
-
-
Field Detail
-
eventType
public FVEvent.EventType eventType
-
arg
public java.lang.Object arg
-
-
Constructor Detail
-
FVEvent
public FVEvent(FVEvent.EventType eventType, java.lang.Object arg)
- Parameters:
eventType
-arg
-
-
-