mouseHandler = createMouseHandler();
focusListener = createFocusHandler();
comboBox.addMouseListener(mouseHandler);
JTextComponent textComponent = (JTextComponent)comboBox.getEditor().
getEditorComponent();
textComponent.addMouseListener(mouseHandler);
textComponent.addFocusListener(focusListener);
popupListener = createPopupListener();
comboBox.addPopupMenuListener(popupListener);
}