Revision 5378 branches/MULTITHREADING_DEVELOPMENT/libraries/libRemoteServices/src/org/gvsig/remoteClient/wms/WMSClient.java

View differences:

WMSClient.java
2 2
package org.gvsig.remoteClient.wms;
3 3

  
4 4
import java.awt.geom.Rectangle2D;
5
import java.io.File;
6 5
import java.io.IOException;
7 6
import java.net.ConnectException;
8 7
import java.util.TreeMap;
9 8
import java.util.Vector;
10 9

  
10
import org.gvsig.remoteClient.ICancellable;
11 11
import org.gvsig.remoteClient.exceptions.ServerErrorException;
12 12
import org.gvsig.remoteClient.exceptions.WMSException;
13 13
import org.gvsig.remoteClient.utils.BoundaryBox;
......
86 86
     * <p>One of the three interfaces that OGC WMS defines. Request a map.</p> 
87 87
     * @throws ServerErrorException 
88 88
     */
89
    public void getMap(WMSStatus status) throws WMSException, ServerErrorException{   
90
        handler.getMap(status);
89
    public void getMap(WMSStatus status, ICancellable cancel) {   
90
        handler.getMap(status, cancel);
91 91
    } 
92 92
    
93 93
    /**

Also available in: Unified diff