public ConnectionPropertiesAction() {
putValue(Action.NAME, "Connection Settings");
putValue(Action.SMALL_ICON,
getIcon("/com/sshtools/common/ui/properties.png"));
putValue(Action.SHORT_DESCRIPTION, "Connection settings");
putValue(Action.LONG_DESCRIPTION,
"Change the current connecting settings");
putValue(Action.MNEMONIC_KEY, new Integer('t"));
putValue(Action.ACCELERATOR_KEY,
KeyStroke.getKeyStroke(KeyEvent.VK_T, KeyEvent.ALT_MASK));
putValue(Action.ACTION_COMMAND_KEY, "connect-properties-command");
putValue(StandardAction.ON_MENUBAR, new Boolean(true));
putValue(StandardAction.MENU_NAME, "Edit");
putValue(StandardAction.MENU_ITEM_GROUP, new Integer(80));
putValue(StandardAction.MENU_ITEM_WEIGHT, new Integer(10));
putValue(StandardAction.ON_TOOLBAR, new Boolean(true));
putValue(StandardAction.TOOLBAR_GROUP, new Integer(15));
putValue(StandardAction.TOOLBAR_WEIGHT, new Integer(10));
}