11991200120112021203120412051206120712081209
/** * Displays About Dialog */ protected void showAbout() { try { new AboutDialog(this); } catch (Exception e) { log.error(e); JOptionPane.showMessageDialog(this, "Unable to display About dialog"); } }
1116111711181119112011211122
/** * Displays About Dialog Box */ protected void showAbout() { new AboutDialog(this); }