/[schmitzm]/branches/2.3.x/src/skrueger/geotools/io/WfsSettingsJComboBox.java
ViewVC logotype

Contents of /branches/2.3.x/src/skrueger/geotools/io/WfsSettingsJComboBox.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1163 - (show annotations)
Sun Oct 24 22:55:43 2010 UTC (14 years, 4 months ago) by alfonx
Original Path: trunk/src/skrueger/geotools/io/WfsSettingsJComboBox.java
File MIME type: text/plain
File size: 563 byte(s)
Improved the AtlasStyler Import-Wizard GUIwise
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 }

Properties

Name Value
svn:eol-style native
svn:keywords Id URL
svn:mime-type text/plain

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26