*/
public class About extends AbstractAction {
private AboutDialog aboutDialog;
public About(final Frame parent) {
aboutDialog = new AboutDialog(parent);
putValue(NAME, LocalisationHelper.getString("main_frame_menuitem_about"));
putValue(SHORT_DESCRIPTION, LocalisationHelper.getString("main_frame_menuitem_hint_about"));
putValue(MNEMONIC_KEY, new Integer(LocalisationHelper.getString("main_frame_menuitem_mnemonic_about").charAt(0)));
putValue(ACTION_COMMAND_KEY, "about");
putValue(SMALL_ICON, new ImageIcon(Toolkit.getDefaultToolkit().getImage(parent.getClass().getResource("images/about.png"))));