}
final Component editorComponent = getEditorComponent();
if (editorComponent instanceof JComboBox) {
final JComboBox comboBox = (JComboBox) editorComponent;
if (comboBox.isEditable()) {
final ComboBoxEditor editor = comboBox.getEditor();
editor.selectAll();
KeyEvent keyEv;
keyEv = new KeyEvent(editor.getEditorComponent(), KeyEvent.KEY_TYPED, e.getWhen(),
e.getModifiers(), KeyEvent.VK_UNDEFINED, e.getKeyChar(), KeyEvent.KEY_LOCATION_UNKNOWN);
retValue = SwingUtilities.processKeyBindings(keyEv);
}
else {
editorComponent.requestFocusInWindow();