Searched defs:keySelectionManager (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicComboBoxUI.java162 JComboBox.KeySelectionManager keySelectionManager; field in class:BasicComboBoxUI
279 if (keySelectionManager == null || keySelectionManager instanceof UIResource) {
280 keySelectionManager = new DefaultKeySelectionManager();
282 comboBox.setKeySelectionManager(keySelectionManager);
311 if (keySelectionManager instanceof UIResource) {
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJComboBox.java137 protected KeySelectionManager keySelectionManager = null; field in class:JComboBox
1365 if ( keySelectionManager == null )
1366 keySelectionManager = createDefaultKeySelectionManager();
1368 index = keySelectionManager.selectionForKey(keyChar,getModel());
1430 keySelectionManager = aManager;
1439 return keySelectionManager;

Completed in 65 milliseconds