MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / showStatus

Method showStatus

ij/src/main/java/ij/ImageJ.java:396–403  ·  view source on GitHub ↗
(String s)

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls 1

setTextMethod · 0.45

Tested by

no test coverage detected