public OptionsAction() {
putValue(Action.NAME, "Options");
putValue(Action.SMALL_ICON,
getIcon("/com/sshtools/common/ui/options.png"));
putValue(Action.SHORT_DESCRIPTION, "Application options");
putValue(Action.LONG_DESCRIPTION, "Edit the application options");
putValue(Action.MNEMONIC_KEY, new Integer('o"));
putValue(Action.ACTION_COMMAND_KEY, "options-command");
putValue(StandardAction.ON_MENUBAR, new Boolean(true));
putValue(StandardAction.MENU_NAME, "Tools");
putValue(StandardAction.MENU_ITEM_GROUP, new Integer(90));
putValue(StandardAction.MENU_ITEM_WEIGHT, new Integer(99));
putValue(StandardAction.ON_TOOLBAR, new Boolean(true));
putValue(StandardAction.TOOLBAR_GROUP, new Integer(90));
putValue(StandardAction.TOOLBAR_WEIGHT, new Integer(0));
}