Package ghidra.app.events
Class CloseProgramPluginEvent
- java.lang.Object
 - 
- ghidra.framework.plugintool.PluginEvent
 - 
- ghidra.app.events.CloseProgramPluginEvent
 
 
 
- 
public class CloseProgramPluginEvent extends PluginEvent
Event for telling a tool (program mgr) to open a programThis event shares a common tool-event name with the
OpenProgramPluginEventso that they have a single shared tool connection. 
- 
- 
Field Summary
- 
Fields inherited from class ghidra.framework.plugintool.PluginEvent
EXTERNAL_SOURCE_NAME 
 - 
 
- 
Constructor Summary
Constructors Constructor Description CloseProgramPluginEvent(java.lang.String source, Program p, boolean ignoreChanges)Constuct a new plugin event. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProgramgetProgram()Return the program on this event.booleanignoreChanges()- 
Methods inherited from class ghidra.framework.plugintool.PluginEvent
getDetails, getEventName, getSourceName, getToolEventName, getTriggerEvent, isToolEvent, lookupToolEventName, setSourceName, setTriggerEvent, toString 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
CloseProgramPluginEvent
public CloseProgramPluginEvent(java.lang.String source, Program p, boolean ignoreChanges)Constuct a new plugin event.- Parameters:
 source- name of the plugin that created this eventp- the program associated with this event
 
 - 
 
- 
Method Detail
- 
getProgram
public Program getProgram()
Return the program on this event.- Returns:
 - null if the event if for a program closing.
 
 
- 
ignoreChanges
public boolean ignoreChanges()
 
 - 
 
 -