1 |
package skrueger.geotools.io; |
2 |
|
3 |
import javax.swing.DefaultComboBoxModel; |
4 |
import javax.swing.JComboBox; |
5 |
|
6 |
public class WfsSettingsJComboBox extends JComboBox { |
7 |
|
8 |
private final WfsServerList wfsList; |
9 |
|
10 |
public WfsSettingsJComboBox(WfsServerList wfsList) { |
11 |
super(wfsList.toArray(new WfsServerSettings[0])); |
12 |
this.wfsList = wfsList; |
13 |
} |
14 |
|
15 |
public WfsServerList getWfsList() { |
16 |
return wfsList; |
17 |
} |
18 |
|
19 |
public void listChanged() { |
20 |
WfsServerSettings[] array = wfsList |
21 |
.toArray(new WfsServerSettings[wfsList.size()]); |
22 |
setModel(new DefaultComboBoxModel(array)); |
23 |
} |
24 |
|
25 |
} |