Class FVEvent
- java.lang.Object
-
- ghidra.framework.main.logviewer.event.FVEvent
-
public class FVEvent extends java.lang.ObjectCustom events to be used in conjunction with theFVEventListenermodule. Users should construct an event, then fire it usingFVEventListener#sendEvent(FVEvent). Two items are passed along with each event: - TheeventTypeattribute specifies the event that is being fired. - Theargis 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 classFVEvent.EventType
-
Field Summary
Fields Modifier and Type Field Description java.lang.ObjectargFVEvent.EventTypeeventType
-
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-
-
-