changedUpdate exception
[fedora-idea.git] / platform / platform-impl / src / com / intellij / ui / ComboboxSpeedSearch.java
blobef12b0ac6b54c9608d992cd0c2375397908c3581
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
18 * Created by IntelliJ IDEA.
19 * User: Anna.Kozlova
20 * Date: 11-Jul-2006
21 * Time: 13:56:13
23 package com.intellij.ui;
25 import javax.swing.*;
27 public class ComboboxSpeedSearch extends SpeedSearchBase<JComboBox> {
28 public ComboboxSpeedSearch(JComboBox comboBox) {
29 super(comboBox);
32 protected void selectElement(Object element, String selectedText) {
33 myComponent.setSelectedItem(element);
36 protected int getSelectedIndex() {
37 return myComponent.getSelectedIndex();
40 protected Object[] getAllElements() {
41 ListModel model = myComponent.getModel();
42 Object[] elements = new Object[model.getSize()];
43 for(int i = 0; i < elements.length; i++){
44 elements[i] = model.getElementAt(i);
46 return elements;
49 protected String getElementText(Object element) {
50 return element.toString();