Package ghidra.framework.model
Interface ToolChestChangeListener
-
public interface ToolChestChangeListener
Listener that is notified when a ToolTemplate is added or removed from a project
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
toolRemoved(java.lang.String toolName)
ToolConfig was removed from the project toolchestvoid
toolSetAdded(ToolSet toolset)
ToolSet was added to the project toolchestvoid
toolTemplateAdded(ToolTemplate tool)
ToolConfig was added to the project toolchest
-
-
-
Method Detail
-
toolTemplateAdded
void toolTemplateAdded(ToolTemplate tool)
ToolConfig was added to the project toolchest
-
toolSetAdded
void toolSetAdded(ToolSet toolset)
ToolSet was added to the project toolchest
-
toolRemoved
void toolRemoved(java.lang.String toolName)
ToolConfig was removed from the project toolchest
-
-