Package ghidra.app.events
Class FirstTimeAnalyzedPluginEvent
java.lang.Object
ghidra.framework.plugintool.PluginEvent
ghidra.app.events.FirstTimeAnalyzedPluginEvent
Plugin event class for notification of when programs have completed being analyzed for the first
time.
-
Field Summary
Fields inherited from class ghidra.framework.plugintool.PluginEvent
EXTERNAL_SOURCE_NAME
-
Constructor Summary
ConstructorDescriptionFirstTimeAnalyzedPluginEvent
(String sourceName, Program program) Constructor -
Method Summary
Modifier and TypeMethodDescriptionReturns theProgram
that has just been analyzed for the first time.Methods inherited from class ghidra.framework.plugintool.PluginEvent
getDetails, getEventName, getSourceName, getToolEventName, getTriggerEvent, isToolEvent, lookupToolEventName, setSourceName, setTriggerEvent, toString
-
Field Details
-
EVENT_NAME
- See Also:
-
-
Constructor Details
-
FirstTimeAnalyzedPluginEvent
Constructor- Parameters:
sourceName
- source name of the plugin that created this eventprogram
- the program that has been analyzed for the first time
-
-
Method Details
-
getProgram
Returns theProgram
that has just been analyzed for the first time. This method can return null, but only if the program has been closed and is no longer in use which can't happen if the method is called during the original event notification.- Returns:
- the
Program
that has just been analyzed for the first time.
-