]> git.argeo.org Git - lgpl/argeo-commons.git/blobdiff - basic/runtime/org.argeo.basic.nodeps/src/main/java/org/argeo/util/tabular/TabularRowIterator.java
Introduce CsvWriter
[lgpl/argeo-commons.git] / basic / runtime / org.argeo.basic.nodeps / src / main / java / org / argeo / util / tabular / TabularRowIterator.java
index e98a8fba39f2c23c510140433342e3d3a1047c16..e75cff8c1cb32118f5c9d101202414bfe332d829 100644 (file)
@@ -5,8 +5,8 @@ import java.util.Iterator;
 /** Navigation of rows */
 public interface TabularRowIterator extends Iterator<TabularRow> {
        /**
-        * Current line number, incremented by each call to next(), starts at 0, but
-        * will therefore be 1 for the first row returned.
+        * Current row number, has to be incremented by each call to next() ; starts at 0, will
+        * therefore be 1 for the first row returned.
         */
-       public Long getCurrentLineNumber();
+       public Long getCurrentRowNumber();
 }