]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.cms/src/org/argeo/cms/tabular/TabularRowIterator.java
Simplify LDAP directory.
[lgpl/argeo-commons.git] / org.argeo.cms / src / org / argeo / cms / tabular / TabularRowIterator.java
1 package org.argeo.cms.tabular;
2
3 import java.util.Iterator;
4
5 /** Navigation of rows */
6 public interface TabularRowIterator extends Iterator<TabularRow> {
7 /**
8 * Current row number, has to be incremented by each call to next() ; starts at 0, will
9 * therefore be 1 for the first row returned.
10 */
11 public Long getCurrentRowNumber();
12 }