Revision 5416 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/spatialindex/IPersistentSpatialIndex.java

View differences:

IPersistentSpatialIndex.java
45 45
*
46 46
* $Id$
47 47
* $Log$
48
* Revision 1.1  2006-05-01 18:38:41  azabala
48
* Revision 1.2  2006-05-24 21:57:42  azabala
49
* a?adidos comentarios
50
*
51
* Revision 1.1  2006/05/01 18:38:41  azabala
49 52
* primera version en cvs del api de indices espaciales
50 53
*
51 54
*
......
58 61
 *
59 62
 */
60 63
public interface IPersistentSpatialIndex extends ISpatialIndex {
64
	/**
65
	 * It makes persistent all changes applied to Spatial Index
66
	 *
67
	 */
61 68
	public void flush();
69
	/**
70
	 * Checks if the persistent store of this spatial index exists
71
	 * @return
72
	 */
62 73
	public boolean exists();
63
	public void create();
74
	
75
	public void load() throws SpatialIndexException;
76
	
77
	/**
78
	 * Frees resources of persistent data store
79
	 * (closes files, etc)
80
	 *
81
	 */
82
	public void close();
64 83
}
65 84

  

Also available in: Unified diff