Searched refs:currentWaitDialog (Results 1 – 1 of 1) sorted by relevance
87 private JDialog currentWaitDialog = null; field in UI90 if (currentWaitDialog == null) { in showWaitDialog()91 currentWaitDialog = new JDialog(this, "Please wait...", true); in showWaitDialog()92 currentWaitDialog.getContentPane().add(new JLabel("Please be patient."), in showWaitDialog()96 currentWaitDialog.getContentPane().add(progress, BorderLayout.SOUTH); in showWaitDialog()97 currentWaitDialog.setSize(200, 100); in showWaitDialog()98 currentWaitDialog.setLocationRelativeTo(null); in showWaitDialog()107 if (currentWaitDialog != null) { in showWaitDialogLater()108 currentWaitDialog.setVisible(true); // This is blocking. in showWaitDialogLater()115 if (currentWaitDialog != null) { in updateWaitDialog()[all …]