Searched refs:currentSelection (Results 1 - 4 of 4) sorted by relevance
/openjdk7/jdk/src/share/classes/sun/awt/im/ |
H A D | InputMethodPopupMenu.java | 78 abstract void addMenuItem(String label, String command, String currentSelection); argument 81 String currentSelection); 83 void addOneInputMethodToMenu(InputMethodLocator locator, String currentSelection) { argument 100 addMenuItem(label, null, currentSelection); 109 addMenuItem(label, command, currentSelection); 117 addMenuItem(submenu, subLabel, subCommand, currentSelection); 123 * Returns whether command indicates the same input method as currentSelection, 124 * taking into account that command may not specify a locale where currentSelection does. 126 static boolean isSelected(String command, String currentSelection) { argument 127 if (command == null || currentSelection 80 addMenuItem(Object targetMenu, String label, String command, String currentSelection) argument 201 addMenuItem(String label, String command, String currentSelection) argument 205 addMenuItem(Object targetMenu, String label, String command, String currentSelection) argument 259 addMenuItem(String label, String command, String currentSelection) argument 263 addMenuItem(Object targetMenu, String label, String command, String currentSelection) argument [all...] |
H A D | InputMethodManager.java | 478 String currentSelection = getCurrentSelection(); 482 selectionMenu.addOneInputMethodToMenu(hostAdapterLocator, currentSelection); 489 selectionMenu.addOneInputMethodToMenu(locator, currentSelection);
|
/openjdk7/jdk/src/share/classes/javax/swing/ |
H A D | MenuSelectionManager.java | 283 MenuElement currentSelection[] = getSelectedPath(); 286 if (currentSelection[currentSelection.length-1] != 288 (currentSelection.length < 2 || 289 currentSelection[currentSelection.length-2] != 291 Component oldMC = currentSelection[currentSelection.length-1].getComponent(); 301 currentSelection[currentSelection [all...] |
H A D | JComboBox.java | 1502 int currentSelection = -1; 1510 currentSelection = i; 1519 for ( i = ++currentSelection, c = aModel.getSize() ; i < c ; i++ ) { 1528 for ( i = 0 ; i < currentSelection ; i ++ ) {
|
Completed in 3522 milliseconds