Package ghidra.framework.plugintool
Interface PluginInstaller
- All Known Implementing Classes:
DefaultPluginInstaller
public interface PluginInstaller
An interface that facilitates the adding and removing of plugins
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddPlugins(List<String> pluginClassNames) Adds the given plugins to the systemReturns all currently installed pluginsvoidremovePlugins(List<Plugin> plugins) Removes the given plugins from the system
-
Method Details
-
getManagedPlugins
Returns all currently installed plugins- Returns:
- the plugins
-
addPlugins
Adds the given plugins to the system- Parameters:
pluginClassNames- the plugin class names to add- Throws:
PluginException- if there is an issue loading any of the plugins
-
removePlugins
Removes the given plugins from the system- Parameters:
plugins- the plugins
-