Revision 652 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/operations/strategies/Strategy.java

View differences:

Strategy.java
7 7
import java.util.BitSet;
8 8

  
9 9
import com.hardcode.driverManager.DriverLoadException;
10
import com.hardcode.gdbms.engine.data.DriverException;
10
import com.iver.cit.gvsig.fmap.DriverException;
11 11
import com.iver.cit.gvsig.fmap.ViewPort;
12 12
import com.iver.cit.gvsig.fmap.core.IGeometry;
13 13
import com.iver.cit.gvsig.fmap.drivers.DriverIOException;
......
37 37
     * @throws DriverException
38 38
     */
39 39
    void draw(BufferedImage image, Graphics2D g, ViewPort viewPort, Cancellable cancel)
40
        throws DriverIOException, DriverLoadException, DriverException;
40
        throws DriverException;
41 41

  
42 42
    /**
43 43
	 * Dibujar? esta Shape en el Graphics con el s?mbolo que se pasa como
......
55 55
     * @throws DriverLoadException
56 56
	 */
57 57
	void print(Graphics2D g, ViewPort viewPort, Cancellable cancel)
58
		throws DriverIOException, DriverLoadException, DriverException;
58
		throws DriverException;
59 59
    
60 60
    /**
61 61
     * Recorre las features de la capa vectorial invocando el m?todo visit del
......
68 68
     * @throws DriverIOException
69 69
     */
70 70
    void process(FeatureVisitor visitor, BitSet subset)
71
        throws DriverIOException;
71
        throws DriverException;
72 72

  
73 73
    /**
74 74
     * Recorre las features de la capa vectorial invocando el m?todo visit del
......
79 79
     *
80 80
     * @throws DriverIOException
81 81
     */
82
    void process(FeatureVisitor visitor) throws DriverIOException;
82
    void process(FeatureVisitor visitor) throws DriverException;
83 83

  
84 84
    /**
85 85
     * Realiza una query por punto en coordenadas del mundo real de la capa
......
90 90
     *
91 91
     * @return DOCUMENT ME!
92 92
     */
93
    BitSet queryByPoint(QueriedPoint p, double tolerance) throws DriverIOException;
93
    BitSet queryByPoint(QueriedPoint p, double tolerance) throws DriverException;
94 94

  
95 95
    /**
96 96
     * Realiza una query por rect?ngulo en coordenadas del mundo real de la
......
98 98
     * @param rect DOCUMENT ME!
99 99
     * @return DOCUMENT ME!
100 100
     */
101
    BitSet queryByRect(Rectangle2D rect) throws DriverIOException;
101
    BitSet queryByRect(Rectangle2D rect) throws DriverException;
102 102

  
103 103
    /**
104 104
     * Realiza una query por IGeometry en coordenadas del mundo real de la capa
......
109 109
     *
110 110
     * @return DOCUMENT ME!
111 111
     */
112
    BitSet queryByShape(IGeometry g, int relationship)throws DriverIOException;
112
    BitSet queryByShape(IGeometry g, int relationship)throws DriverException;
113 113

  
114 114
    /**
115 115
     * Obtiene el rect?ngulo m?nimo que contiene todas las features

Also available in: Unified diff