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

Method showProgress

ij/src/main/java/ij/IJ.java:846–848  ·  view source on GitHub ↗

Updates the progress bar, where 0<=progress<=1.0. The progress bar is not shown in BatchMode and erased if progress>=1.0. The progress bar is updated only if more than 90 ms have passes since the last call. Does nothing if the ImageJ window is not present.

(double progress)

Source from the content-addressed store, hash-verified

844 updated only if more than 90 ms have passes since the last call. Does nothing
845 if the ImageJ window is not present. */
846 public static void showProgress(double progress) {
847 if (progressBar!=null) progressBar.show(progress, false);
848 }
849
850 /** Updates the progress bar, where the length of the bar is set to
851 * (<code>currentValue+1)/finalValue</code> of the maximum bar length.

Callers 15

showProgressMethod · 0.95
runMethod · 0.95
runMethod · 0.95
errorMethod · 0.95
finishUpMethod · 0.95
setBatchModeMethod · 0.95
convertToRealStackMethod · 0.95
reduceStackMethod · 0.95
reduceHyperstackMethod · 0.95
mergeStacksMethod · 0.95
makeStackMethod · 0.95
readAvi2IndexMethod · 0.95

Calls 2

showMethod · 0.45
setBatchModeMethod · 0.45

Tested by

no test coverage detected