Resets the simulation parameters to their initial state.
()
| 41 | * Resets the simulation parameters to their initial state. |
| 42 | */ |
| 43 | @Override |
| 44 | public void reset() { // invoked when reset button is pressed |
| 45 | control.setValue("a", 10.0); // unused parameter |
| 46 | control.setAdjustableValue("counter", 90); // allows counter to be changed after initialization |
| 47 | initialize(); |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Starts the Java application. |
nothing calls this directly
no test coverage detected