Statistics
| Revision:

gvsig-raster / org.gvsig.raster / trunk / org.gvsig.raster / org.gvsig.raster.app / org.gvsig.raster.app.common / src / main / java / org / gvsig / raster / mainplugin / toolbar / BinarySearch.java @ 3001

History | View | Annotate | Download (2.92 KB)

1
/* gvSIG. Geographic Information System of the Valencian Government
2
*
3
* Copyright (C) 2007-2008 Infrastructures and Transports Department
4
* of the Valencian Government (CIT)
5
* 
6
* This program is free software; you can redistribute it and/or
7
* modify it under the terms of the GNU General Public License
8
* as published by the Free Software Foundation; either version 2
9
* of the License, or (at your option) any later version.
10
* 
11
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
* GNU General Public License for more details.
15
* 
16
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
19
* MA  02110-1301, USA.
20
* 
21
*/
22
package org.gvsig.raster.mainplugin.toolbar;
23

    
24
import java.util.Arrays;
25
import java.util.List;
26
import java.util.Vector;
27
import org.apache.commons.lang3.StringUtils;
28

    
29
import org.gvsig.gui.beans.comboboxconfigurablelookup.ILookUp;
30
import org.gvsig.gui.beans.comboboxconfigurablelookup.JComboBoxConfigurableLookUp;
31
import org.gvsig.gui.beans.comboboxconfigurablelookup.StringComparator;
32
/**
33
 * Clase para reimplementar una nueva busqueda para el componente
34
 * {@link JComboBoxConfigurableLookUp}
35
 * 
36
 * @version 13/02/2008
37
 * @author BorSanZa - Borja S?nchez Zamorano 
38
 */
39
public class BinarySearch implements ILookUp {
40
        public List<Object> doLookUpConsideringCaseSensitive(String text, Vector<Object> sortOrderedItems, StringComparator comp) {
41
                Vector<Object> list = new Vector<Object>();
42
                if( !StringUtils.isEmpty(text) ) {
43
                    for (int i = 0; i < sortOrderedItems.size(); i++) {
44
                        Object cur_o = sortOrderedItems.get(i);
45
                        if( cur_o!=null ) {
46
                            String cur_s = cur_o.toString();
47
                            if (cur_s.indexOf(text) != -1) {
48
                                    list.add(cur_o);
49
                            }
50
                        }
51
                    }
52
                }                
53
                return Arrays.asList(list.toArray());
54
        }
55

    
56
        public List<Object> doLookUpIgnoringCaseSensitive(String text, Vector<Object> sortOrderedItems, StringComparator comp) {
57
                Vector<Object> list = new Vector<Object>();
58
                if( !StringUtils.isEmpty(text) ) {
59
                    for (int i = 0; i < sortOrderedItems.size(); i++) {
60
                        Object cur_o = sortOrderedItems.get(i);
61
                        if( cur_o!=null ) {
62
                            String cur_s = cur_o.toString();
63
                            if (cur_s.toLowerCase().indexOf(text.toLowerCase()) != -1) {
64
                                    list.add(cur_o);
65
                            }
66
                        }
67
                    }
68
                }
69
                return Arrays.asList(list.toArray());
70
        }
71
}