Package ghidra.framework.model
Interface ToolListener
-
public interface ToolListener
Interface to be implemented by objects that want to receive PluginEvents. Tools must be registered for a particular event to actually receive it.- See Also:
PluginEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
processToolEvent(PluginEvent toolEvent)
This method is invoked when the registered PluginEvent event occurs.
-
-
-
Method Detail
-
processToolEvent
void processToolEvent(PluginEvent toolEvent)
This method is invoked when the registered PluginEvent event occurs.- Parameters:
toolEvent
- The cross-tool PluginEvent.
-
-