*
* @see java.util.Iterator#next()
*/
@SuppressWarnings("deprecation")
public ViewEntry next() {
ViewEntry result = null;
ViewEntry currentEntry = getCurrentEntry();
try {
result = ((currentEntry == null) ? getCollection().getFirstEntry() : getCollection().getNextEntry(currentEntry));
currentIndex_++;
} catch (Throwable t) {
DominoUtils.handleException(t);