MCPcopy
hub / github.com/arduino/Arduino / unprogress

Method unprogress

app/src/processing/app/EditorStatus.java:184–194  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

182 }
183
184 public void unprogress() {
185 if (PreferencesData.getBoolean("editor.beep.compile")) {
186 Toolkit.getDefaultToolkit().beep();
187 }
188 if (progressBar == null) {
189 return;
190 }
191 progressBar.setVisible(false);
192 progressBar.setValue(0);
193 setCursor(null);
194 }
195
196 public void progressUpdate(int value) {
197 if (progressBar == null) return;

Callers 2

runMethod · 0.80
runMethod · 0.80

Calls 3

getBooleanMethod · 0.95
setVisibleMethod · 0.80
setValueMethod · 0.80

Tested by

no test coverage detected