147148149150151152153
/** Display the frame **/ setVisible(true); /** Show the about dialog and allow to automatically close **/ new AboutDialog(this, true); }
353354355356357358359
dlg.setLocation(x, y); } private void showAboutDialog() { new AboutDialog(this, false); }
146147148149150151152
/** Display the frame **/ show(); /** Show the about dialog and allow to automatically close **/ new AboutDialog(this, true); }
344345346347348349350