Ignore:
Timestamp:
2009-08-16T23:36:16+02:00 (15 years ago)
Author:
pieren
Message:

raster image feature implementation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/DownloadWMSVectorImage.java

    r17085 r17089  
    1010import org.openstreetmap.josm.gui.PleaseWaitRunnable;
    1111
    12 public class DownloadWMSTask extends PleaseWaitRunnable {
     12public class DownloadWMSVectorImage extends PleaseWaitRunnable {
    1313
    1414    private WMSLayer wmsLayer;
     
    1818    private CadastreGrabber grabber = CadastrePlugin.cadastreGrabber;
    1919
    20     public DownloadWMSTask(WMSLayer wmsLayer, Bounds bounds) {
    21         super(tr("Downloading {0}", wmsLayer.name));
     20    public DownloadWMSVectorImage(WMSLayer wmsLayer, Bounds bounds) {
     21        super(tr("Downloading {0}", wmsLayer.getName()));
    2222
    2323        this.wmsLayer = wmsLayer;
     
    6767        Bounds bounds = new Bounds(mv.getLatLon(0, mv.getHeight()), mv.getLatLon(mv.getWidth(), 0));
    6868
    69         Main.worker.execute(new DownloadWMSTask(wmsLayer, bounds));
     69        Main.worker.execute(new DownloadWMSVectorImage(wmsLayer, bounds));
    7070
    7171    }
Note: See TracChangeset for help on using the changeset viewer.