Changeset 6780 in osm for applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSInfo.java
- Timestamp:
- 2008-02-06T16:45:02+01:00 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSInfo.java
r6776 r6780 12 12 String name; 13 13 String url; 14 Grabber grabber; 14 15 int prefid; 15 16 17 public WMSInfo(String name, String url, Grabber grabber, int prefid) { 18 this.name=name; this.url=url; this.prefid=prefid; 19 this.grabber = grabber; 20 } 21 16 22 public WMSInfo(String name, String url, int prefid) { 17 this .name=name; this.url=url; this.prefid=prefid;23 this(name, url, WMSPlugin.getGrabber(url), prefid); 18 24 } 19 25
Note:
See TracChangeset
for help on using the changeset viewer.
