Does a simulation step by decrementing the counter.
()
| 23 | * Does a simulation step by decrementing the counter. |
| 24 | */ |
| 25 | @Override |
| 26 | public void doStep() { // does a simulation step |
| 27 | control.println("Counter = "+(counter--)); |
| 28 | control.setAdjustableValue("counter", counter); |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Initializes the simulation by setting the counter variable |
nothing calls this directly
no test coverage detected