Package ghidra.framework.model
Interface ToolListener
-
- All Known Subinterfaces:
Tool
- All Known Implementing Classes:
FrontEndTool
,GhidraTool
,ModalPluginTool
,PluginTool
,StandAlonePluginTool
,TestFrontEndTool
,TestTool
public interface ToolListener
Interface to be implemented by objects that want to receive ToolEvents. Tools must be registered for a particular event to actually receive it.- See Also:
ToolEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
processToolEvent(PluginEvent toolEvent)
This method is invoked when the registered ToolEvent event occurs.
-
-
-
Method Detail
-
processToolEvent
void processToolEvent(PluginEvent toolEvent)
This method is invoked when the registered ToolEvent event occurs.- Parameters:
toolEvent
- The cross-tool PluginEvent.
-
-