public StopAction() {
putValue(Action.NAME, NAME_STOP);
putValue(Action.SMALL_ICON, getIcon(SMALL_ICON_STOP));
putValue(LARGE_ICON, getIcon(LARGE_ICON_STOP));
putValue(Action.SHORT_DESCRIPTION, SHORT_DESCRIPTION_STOP);
putValue(Action.LONG_DESCRIPTION, LONG_DESCRIPTION_STOP);
putValue(Action.ACCELERATOR_KEY,
KeyStroke.getKeyStroke(KeyEvent.VK_J, KeyEvent.ALT_MASK));
putValue(Action.MNEMONIC_KEY, new Integer(MNEMONIC_KEY_STOP));
putValue(Action.ACTION_COMMAND_KEY, ACTION_COMMAND_KEY_STOP);
putValue(StandardAction.ON_MENUBAR, new Boolean(true));
putValue(StandardAction.MENU_NAME, "File");
putValue(StandardAction.MENU_ITEM_GROUP, new Integer(60));
putValue(StandardAction.MENU_ITEM_WEIGHT, new Integer(10));
putValue(StandardAction.ON_TOOLBAR, new Boolean(true));
putValue(StandardAction.TOOLBAR_GROUP, new Integer(60));
putValue(StandardAction.TOOLBAR_WEIGHT, new Integer(10));
}