Revision 43358 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.spi/src/main/java/org/gvsig/fmap/dal/feature/spi/FeatureSetProvider.java

View differences:

FeatureSetProvider.java
90 90
     * @param index
91 91
     *            index of first element to be returned from the iterator (by a
92 92
     *            call to the <tt>next</tt> method).
93
     * @param elements
93 94
     * @return an iterator of the elements in this collection (in proper
94 95
     *         sequence).
95 96
     * 
......
98 99
     * 
99 100
     * @deprecated use {@link #fastIterator()} instead
100 101
     */
101
	DisposableIterator iterator(long index) throws DataException;
102
	DisposableIterator iterator(long index, long elements) throws DataException;
102 103

  
103 104
    /**
104 105
     * Returns an iterator over the elements in this set, in the order
......
119 120
     * Returns an iterator over the elements in this set, in the order
120 121
     * (if any) defined when the collection was obtained.
121 122
     * 
123
     * @param elements
122 124
     * @see #fastIterator()
123 125
     * @see #fastIterator(long)
124 126
     * 
......
131 133
     * @throws DataException
132 134
     *             if there is an error getting the iterator
133 135
     */
134
	DisposableIterator fastIterator(long index) throws DataException;
136
	DisposableIterator fastIterator(long index, long elements) throws DataException;
135 137

  
136 138
}

Also available in: Unified diff