@Override
protected SpeechProcessor getKeyEventProcessor() {
if (radio == null || getUberEvent().key.getKeyCode() != KeyEvent.VK_SPACE)
return new NullProcessor();
RadioButtonProcessor proc = new RadioButtonProcessor();
proc.setKeyEvent(true);
//When a checkbox is selected using the space bar read "selected" followed by the name of the checkbox followed by "Check Box"
proc.setChecked(radio.isSelected());
proc.setText(radio.getText());
return proc;
}