Revision 36417 branches/dal_time_support/libraries/libFMap_dal/src/org/gvsig/fmap/dal/feature/FeatureIndex.java

View differences:

FeatureIndex.java
60 60
	 * The Feature must contain a column that matches this index's column (name and data type)
61 61
	 * @param feat
62 62
	 */
63
	public void insert(Feature feat);
63
    public void insert(Feature feat) throws DataException;
64 64

  
65 65
	/**
66 66
	 * Inserts a FeatureSet into this index
......
74 74
	 * The Feature must contain a column that matches this index's column (name and data type)
75 75
	 * @param feat
76 76
	 */
77
	public void delete(Feature feat);
77
    public void delete(Feature feat) throws DataException;
78 78

  
79 79
	/**
80 80
	 * Deletes a FeatureSet from this index
......
152 152
			Object tolerance) throws FeatureIndexException;
153 153

  
154 154
	
155
    /**
156
     * Returns if the index is valid and might be used to get Features.
157
     * 
158
     * @return if the index is valid
159
     */
160
    public boolean isValid();
161

  
162
    /**
163
     * Returns if the index is in the process of being filled with the Features
164
     * of a store.
165
     * 
166
     * @return if the index is filling with data
167
     */
168
    public boolean isFilling();
155 169
}

Also available in: Unified diff