Changeset 29711 in osm for applications/editors/josm/plugins/poly/src
- Timestamp:
- 2013-06-26T22:50:08+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified applications/editors/josm/plugins/poly/src/poly/DownloadPolyTask.java ΒΆ
r28570 r29711 30 30 31 31 @Override 32 public boolean acceptsUrl( String url) {33 return url != null && url.matches("http://.*/.*\\.poly");32 public String[] getPatterns() { 33 return new String[]{"http://.*/.*\\.poly"}; 34 34 } 35 35 36 @Override 37 public String getTitle() { 38 return tr("Download Osmosis poly"); 39 } 40 36 41 public class ServerPolyReader extends OsmServerReader { 37 42 private String url;
Note:
See TracChangeset
for help on using the changeset viewer.