(String s)
| 394 | } |
| 395 | |
| 396 | @AstroImageJ(reason = "Update JLabel on EDT", modified = true) |
| 397 | void showStatus(String s) { |
| 398 | if (SwingUtilities.isEventDispatchThread()) { |
| 399 | statusLine.setText(s); |
| 400 | } else { |
| 401 | SwingUtilities.invokeLater(() -> statusLine.setText(s)); |
| 402 | } |
| 403 | } |
| 404 | |
| 405 | public ProgressBar getProgressBar() { |
| 406 | return progressBar; |