Package ghidra.app.events
Class ProgramOpenedPluginEvent
java.lang.Object
ghidra.framework.plugintool.PluginEvent
ghidra.app.events.ProgramOpenedPluginEvent
Plugin event class for notification of programs being created, opened, or closed.
-
Field Summary
Fields inherited from class ghidra.framework.plugintool.PluginEvent
EXTERNAL_SOURCE_NAME
-
Constructor Summary
ConstructorDescriptionProgramOpenedPluginEvent
(String source, Program p) Construct a new plugin event. -
Method Summary
Methods inherited from class ghidra.framework.plugintool.PluginEvent
getDetails, getEventName, getSourceName, getToolEventName, getTriggerEvent, isToolEvent, lookupToolEventName, setSourceName, setTriggerEvent, toString
-
Constructor Details
-
ProgramOpenedPluginEvent
Construct a new plugin event.- Parameters:
source
- name of the plugin that created this eventp
- the program associated with this event
-
-
Method Details
-
getProgram
Returns theProgram
that has just been opened. 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.
-