Revision 10627 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/layers/layerOperations/InfoByPoint.java

View differences:

InfoByPoint.java
41 41
package com.iver.cit.gvsig.fmap.layers.layerOperations;
42 42

  
43 43
import java.awt.Point;
44
import com.iver.cit.gvsig.fmap.DriverException;
44

  
45
import com.hardcode.gdbms.driver.exceptions.ReadDriverException;
46
import com.hardcode.gdbms.engine.data.driver.DriverException;
47
import com.iver.cit.gvsig.exceptions.layers.LoadLayerException;
48
import com.iver.cit.gvsig.exceptions.visitors.VisitorException;
45 49
import com.iver.utiles.swing.threads.Cancellable;
46 50

  
47 51

  
......
58 62
	 * @param p Punto que se consulta
59 63
	 *
60 64
	 * @return String con el resultado en texto plano o en XML
65
	 * @throws ReadDriverException
66
	 * @throws VisitorException TODO
67
	 * @throws LoadLayerException
61 68
	 * @throws DriverException
62 69
	 */
63
	public XMLItem[] getInfo(Point p, double tolerance, Cancellable cancel) throws DriverException;
70
	public XMLItem[] getInfo(Point p, double tolerance, Cancellable cancel) throws ReadDriverException, VisitorException, LoadLayerException;
64 71
}

Also available in: Unified diff