// that holds the Jaspira toolbar this button belongs to
for (Component c = this; c != null; c = c.getParent())
{
if (c instanceof PluginPanel)
{
PluginPanel pluginPanel = (PluginPanel) c;
VisiblePlugin plugin = pluginPanel.getPlugin();
if (plugin != null)
{
// Set the focus to the plugin prior to executing the action
plugin.focusPlugin();
}