434445464748495051525354
// If there's no tree, we can't do anything either. if (tree == null) return new NullProcessor(); TreeProcessor proc = new TreeProcessor(); proc.setKeyEvent(true); proc.setKeyCode(keyCode); proc.setTree(tree); return proc; }
5556575859606162636465
@Override protected SpeechProcessor getFocusEventProcessor() { if (tree == null) return new NullProcessor(); TreeProcessor proc = new TreeProcessor(); proc.setText("n"); // TODO: phonemic bug needs fixing proc.setTree(tree); return proc; }