8 |
private final WfsServerList wfsList; |
private final WfsServerList wfsList; |
9 |
|
|
10 |
public WfsSettingsJComboBox(WfsServerList wfsList) { |
public WfsSettingsJComboBox(WfsServerList wfsList) { |
11 |
super(wfsList.toArray( new WfsServerSettings[0])); |
super(wfsList.toArray(new WfsServerSettings[0])); |
12 |
this.wfsList = wfsList; |
this.wfsList = wfsList; |
13 |
} |
} |
14 |
|
|
15 |
public WfsServerList getWfsList() { |
public WfsServerList getWfsList() { |
16 |
return wfsList; |
return wfsList; |
17 |
} |
} |
18 |
|
|
19 |
public void listChanged() { |
public void listChanged() { |
20 |
setModel(new DefaultComboBoxModel(wfsList.toArray(new DbServerSettings[0]))); |
WfsServerSettings[] array = wfsList |
21 |
|
.toArray(new WfsServerSettings[wfsList.size()]); |
22 |
|
setModel(new DefaultComboBoxModel(array)); |
23 |
} |
} |
24 |
|
|
|
|
|
25 |
} |
} |