// Add the 'Add to toolbox' action
JaspiraAction action = new JaspiraAction(UserToolBoxPlugin.this, "toolbox.add")
{
public void actionPerformed(ActionEvent ae)
{
addToolBoxItem(new ToolBoxItem(item.getDisplayText(), ItemIconMgr.getInstance().getIcon(item, FlexibleSize.MEDIUM), item.getDescriptionText(), new ItemTransferable(item)));
refreshContent();
// Bring the toolbox to the front, but don't switch pages
showPlugin(false);
}