Package ghidra.framework.model
Interface ToolChestChangeListener
-
public interface ToolChestChangeListenerListener 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 voidtoolRemoved(java.lang.String toolName)ToolConfig was removed from the project toolchestvoidtoolSetAdded(ToolSet toolset)ToolSet was added to the project toolchestvoidtoolTemplateAdded(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
-
-