Revision 23204 branches/v2_0_0_prep/libraries/libFMap_data/src/org/gvsig/fmap/data/index/SpatialIndex.java

View differences:

SpatialIndex.java
70 70
 */
71 71
public interface SpatialIndex extends Index {
72 72
	/**
73
	 * Returns a list of objects spatially indexed
74
	 * covered by specified rect.
75
	 * Usually this list will have Integer objects
76
	 * (pointers to a place where the object information
77
	 * 	is saved)
78 73
	 * @param rect
79
	 * @return
80
	 */
81
	public List query(Envelope env) throws IndexException;	
82
	
83
	/**
84
	 * @param rect
85 74
	 * @param fid
86 75
	 */
87 76
	public void insert(Envelope env, FeatureID fid);
......
92 81
	 */
93 82
	public void delete(Envelope env, FeatureID fid);
94 83
	
95
	//TODO Hacer un overwrite and update
96 84
}
97 85

  
98 86

  

Also available in: Unified diff