public void steppedOver(StateInfo info) {
String stepAudio = "";
if (info.hasNext()) {
ProgramStep step = info.next();
AudioAction action = map.get(step.getType());
action.setStep(step);
stepAudio = action.speak();
}
// Speak the text (if any), plus the line number and class.
int lineNumber = info.getLineNumber();
String className = TODCompilerUtils.friendlyClassName(info.getClassInfo().getFullyQualifiedName());
String lineNumberAndClassName = lineNumber + " " + className;