If (Math.random() < 0.5) {
The source editor highlights the line with the breakpoint in red, and the line in which program execution stopped in green. If the line had been a method call, the Step Over command would run to the next line in the program. If the line had been a method call and you issued the Step Into command, Java WorkShop would execute the first statement of the method and stop.
The Threads/Stack window shows the current state of the program and its data. For example, Blink.paint now indicates it is stopped in line 49.
Next lesson: