Statistics
| Revision:

root / org.gvsig.jcrs / extJCRS / src / org / gvsig / crs / gui / panels / wizard / ComboBoxEditor.java @ 40

History | View | Annotate | Download (337 Bytes)

1
package org.gvsig.crs.gui.panels.wizard;
2

    
3
import javax.swing.DefaultCellEditor;
4

    
5
import org.gvsig.utils.swing.JComboBox;
6

    
7

    
8
public class ComboBoxEditor extends DefaultCellEditor {
9

    
10
        private static final long serialVersionUID = 1L;
11

    
12
        public ComboBoxEditor(String[] items)
13
    {
14
        super(new JComboBox(items));
15
    }
16
}