Revision 43987 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.api/src/main/java/org/gvsig/fmap/dal/feature/FeatureSet.java

View differences:

FeatureSet.java
59 59
 * metodos o en la doc general del featureset.
60 60
 * 
61 61
 */
62
public interface FeatureSet extends DataSet, IndexedVisitable {
62
public interface FeatureSet extends DataSet, IndexedVisitable, Iterable<Feature> {
63 63

  
64 64
	/**
65 65
	 * Returns the default {@link FeatureType} of this FeatureSet.
......
214 214
     * 
215 215
     * @throws DataException
216 216
     */
217
	public DisposableIterator fastIterator(long index) throws DataException;
217
    public DisposableIterator fastIterator(long index) throws DataException;
218 218

  
219 219
    public DisposableIterator fastIterator(long index, long elemets) throws DataException;
220 220

  

Also available in: Unified diff