Revision 43358 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
23 23
 */
24 24
package org.gvsig.fmap.dal.feature;
25 25

  
26
import java.util.Iterator;
27 26
import java.util.List;
28 27

  
29 28
import org.gvsig.fmap.dal.DataSet;
......
128 127
     */
129 128
	DisposableIterator iterator(long index) throws DataException;
130 129

  
130
    DisposableIterator iterator(long index, long elements) throws DataException;
131

  
131 132
    /**
132 133
     * Returns an iterator over the elements in this collection, in the order
133 134
     * (if any) defined when the collection was obtained.
......
141 142
     *         sequence).
142 143
     * 
143 144
     * @deprecated use fastiterator. In next versions the signature of this
144
     * method will be changed to "Iterator<Feature> iterator()".
145
     * method will be changed to "Iterator&lt;Feature&gt; iterator()".
145 146
     */
146 147
     DisposableIterator iterator();
147 148

  
......
215 216
     */
216 217
	public DisposableIterator fastIterator(long index) throws DataException;
217 218

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

  
218 221
	/**
219 222
	 * Indicates whether this FeatureSet contains zero features.
220 223
	 * 
......
320 323
     * @exception BaseException
321 324
     *                if there is an error while performing the visit
322 325
     */
326
    @Override
323 327
    void accept(Visitor visitor, long firstValueIndex) throws BaseException;
328

  
329
    void accept(Visitor visitor, long firstValueIndex, long elements) throws BaseException;
324 330
}

Also available in: Unified diff