Used to extend project folder context menus in the project tree. More...
Public Member Functions | |
| long | getGuid () |
| The GUID of the plugin. | |
| String | getName () |
| The name of the plugin. | |
| void | init (PluginInterface pluginInterface) |
| Initializes the plugin. | |
| void | unload () |
| Unloads the plugin. | |
Package Functions | |
| List< JComponent > | extendProjectFolderMenu (Database database) |
| Extends the project folder context menu. | |
| String | getDescription () |
| The description of the plugin. | |
This interface can be implemented by plugins that want to extend the popup menu that is shown when the user right-clicks on a project folder node in the project tree.
| List<JComponent> BinNavi.API.plugins.IProjectFolderMenuPlugin.extendProjectFolderMenu | ( | Database | database | ) | [package] |
Returns a list of components that should be added to the context menu.
| database | The database the project folder node belongs to. |
| String BinNavi.API.plugins.IPlugin.getDescription | ( | ) | [package, inherited] |
Returns a description of the plugin. This description is used in the plugin configuration dialog to let the user know what the plugin does.
| long BinNavi.API.plugins.IPlugin.getGuid | ( | ) | [inherited] |
Returns a unique GUID that identifies the plugin. Plugins with duplicate GUIDs will not be loaded.
| String BinNavi.API.plugins.IPlugin.getName | ( | ) | [inherited] |
Returns the name of the plugin. This name is used in the plugin configuration dialog to let the user select what plugin to configure.
Note that plugins that return null from this function will not be loaded.
| void BinNavi.API.plugins.IPlugin.init | ( | PluginInterface | pluginInterface | ) | [inherited] |
The plugin manager calls this function for each plugin right after loading a plugin for the first time.
Note that this function should be used to initialize the plugin. Do not use the constructor of the plugin to initialize plugin.
Further note that all plugins must have a standard constructor that does not take any arguments. Only this constructor is used to load a plugin.
| pluginInterface | The plugin interface that gives a plugin access to BinNavi. |
| void BinNavi.API.plugins.IPlugin.unload | ( | ) | [inherited] |
This function is called when the plugin is unloaded. Plugins that actively changed the appearance of BinNavi (for example by adding menus or showing dialogs) must remove all changes in this function.
1.7.1