Changeset 31246 in osm for applications/editors/josm/plugins
- Timestamp:
- 2015-06-08T11:28:21+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/downloads/MapillarySquareDownloadManagerThread.java
r31201 r31246 7 7 import org.openstreetmap.josm.Main; 8 8 import org.openstreetmap.josm.data.Bounds; 9 import org.openstreetmap.josm.gui.PleaseWaitRunnable; 9 10 import org.openstreetmap.josm.plugins.mapillary.MapillaryData; 10 11 … … 18 19 * @see MapillaryDownloader 19 20 */ 20 public class MapillarySquareDownloadManagerThread implementsRunnable {21 public class MapillarySquareDownloadManagerThread extends PleaseWaitRunnable { 21 22 22 23 @SuppressWarnings("unused") … … 26 27 27 28 public MapillarySquareDownloadManagerThread(String urlImages, String urlSequences, Bounds bounds) { 29 super("Mapillary plugin"); 28 30 this.urlImages = urlImages; 29 31 this.urlSequences = urlSequences; … … 31 33 } 32 34 33 public void run() { 35 public void realRun() { 36 this.getProgressMonitor().indeterminateSubTask("Downloading images"); 34 37 downloadSequences(); 35 38 } … … 58 61 MapillaryData.getInstance().dataUpdated(); 59 62 } 63 64 @Override 65 protected void cancel() { 66 // TODO Auto-generated method stub 67 68 } 69 70 @Override 71 protected void finish() { 72 // TODO Auto-generated method stub 73 74 } 60 75 }
Note:
See TracChangeset
for help on using the changeset viewer.