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)
| 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. |
no test coverage detected