JMenu plugins = new JMenu(
Messages.getString("MainFrame.MENU_PLUGINS")); //$NON-NLS-1$)
int index = menuBar.getComponentCount() - 1;
for (ServicePlugin plugin : pluginLoader.getServicePlugins()) {
plugins.add(new ServicePlugunAction(this, factory, plugin));
}
menuBar.add(plugins, index);
}