Searched refs:combo (Results 1 - 9 of 9) sorted by relevance
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/ |
H A D | SynthComboPopup.java | 40 public SynthComboPopup( JComboBox combo ) { 41 super(combo); 45 * Configures the list which is used to hold the combo box items in the
|
/openjdk7/jdk/src/macosx/classes/sun/lwawt/ |
H A D | LWChoicePeer.java | 61 final JComboBox<String> combo = getDelegate(); 65 combo.addItem(choice.getItem(i)); 70 // fires events upon initialization of the combo box. 71 combo.addItemListener(this);
|
/openjdk7/jdk/test/java/net/Authenticator/ |
H A D | B6870935.java | 168 String combo, finalHash; 171 combo = HashA1+ ":" + nonceString + ":" + ncValue + ":" + 175 finalHash = encode(combo, null, md);
|
/openjdk7/jdk/test/sun/net/www/protocol/http/ |
H A D | DigestTest.java | 154 String combo, finalHash; 157 combo = HashA1+ ":" + nonceString + ":" + ncValue + ":" + 161 finalHash = encode(combo, null, md);
|
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/ |
H A D | DigestAuthentication.java | 464 String combo, finalHash; 467 combo = HashA1+ ":" + nonceString + ":" + ncValue + ":" + 471 combo = HashA1 + ":" + 475 finalHash = encode(combo, null, md);
|
/openjdk7/make/ |
H A D | install-rules.gmk | 97 @$(ECHO) $@ installer combo build started: `$(DATE) '+%y-%m-%d %H:%M'`
|
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/ |
H A D | BasicComboPopup.java | 43 * This class represents the ui for the popup portion of the combo box. 158 // Added to the combo box for bound properties 167 // Added to the combo box model 301 * Removes the listeners from the combo box model 303 * @param model The combo box model to install listeners 322 public BasicComboPopup( JComboBox combo ) { 325 comboBox = combo; 342 // Overriden PopupMenuListener notification methods to inform combo box 363 * that will watch for mouse-press and release events on the combo box. 370 * the combo bo [all...] |
/openjdk7/jdk/src/macosx/classes/com/apple/laf/ |
H A D | AquaComboBoxUI.java | 247 * This override is necessary because the Basic L&F for the combo box is working 260 // Notify assistive technologies that the combo box lost focus 451 // Forces the selection of the list item if the combo box is in a JTable 603 public AquaComboBoxUI convertJComponentToTarget(final JComboBox combo) { 604 final ComboBoxUI comboUI = combo.getUI();
|
/openjdk7/jdk/src/solaris/native/sun/awt/ |
H A D | gtk2_interface.c | 1546 GtkWidget *combo = (*fp_gtk_combo_box_entry_new)(); local 1549 (*fp_gtk_widget_set_parent)(result, combo); 1550 ((GtkBin*)combo)->child = result; 1552 (*fp_gtk_container_add)((GtkContainer *)combo, result); 1554 (*fp_gtk_container_add)((GtkContainer *)gtk2_fixed, combo);
|
Completed in 537 milliseconds