@Override
protected SpeechProcessor getKeyEventProcessor() {
if (checkBox == null || getUberEvent().key.getKeyCode() != KeyEvent.VK_SPACE)
return new NullProcessor();
CheckboxProcessor proc = new CheckboxProcessor();
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(checkBox.isSelected());
proc.setText(checkBox.getText());
return proc;
}