Searched refs:currentWaitDialog (Results 1 – 1 of 1) sorted by relevance
102 private JDialog currentWaitDialog = null; field in SwingUI106 if (currentWaitDialog == null) { in showWaitDialog()107 currentWaitDialog = new JDialog(this, "Please wait...", true); in showWaitDialog()108 currentWaitDialog.getContentPane().add(new JLabel("Please be patient."), in showWaitDialog()112 currentWaitDialog.getContentPane().add(progress, BorderLayout.SOUTH); in showWaitDialog()113 currentWaitDialog.setSize(200, 100); in showWaitDialog()114 currentWaitDialog.setLocationRelativeTo(null); in showWaitDialog()123 if (currentWaitDialog != null) { in showWaitDialogLater()124 currentWaitDialog.setVisible(true); // This is blocking. in showWaitDialogLater()132 if (currentWaitDialog != null) { in updateWaitDialog()[all …]