Lines Matching refs:combo

121    * The string to be used as combo separator.
755 * A class used to avoid the possibility a certain type of objects in a combo
756 * box. This is used for instance in the combo box that contains base DNs
757 * where the base DNs are separated in backends, so the combo box displays
765 private JComboBox combo;
769 * @param combo the combo box.
771 public IgnoreItemListener(JComboBox combo)
773 this.combo = combo;
774 selectedItem = combo.getSelectedItem();
786 Object o = combo.getSelectedItem();
792 for (int i=0; i<combo.getModel().getSize(); i++)
794 Object item = combo.getModel().getElementAt(i);
807 combo.setSelectedItem(selectedItem);
812 combo.setSelectedItem(selectedItem);
1039 * a combo box.
1040 * @param o the item in the combo box.
1042 * a combo box.
1330 * Commodity method used to update the elements of a combo box that contains
1331 * the different user backends. If no backends are found the combo box will
1334 * @param combo the combo to be updated.
1339 protected void updateSimpleBackendComboBoxModel(final JComboBox combo,
1351 DefaultComboBoxModel model = (DefaultComboBoxModel)combo.getModel();
1357 combo.setVisible(newElements.size() > 0);
1376 * Commodity method to update a combo box model with the backends of a server.
1377 * @param model the combo box model to be updated.
1428 * Updates a combo box model with a number of items.
1429 * @param newElements the new items for the combo box model.
1430 * @param model the combo box model to be updated.
1439 * Updates a combo box model with a number of items.
1441 * @param newElements the new items for the combo box model.
1442 * @param model the combo box model to be updated.