X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=basic%2Fruntime%2Forg.argeo.basic.nodeps%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Futil%2Ftabular%2FTabularRowIterator.java;h=e75cff8c1cb32118f5c9d101202414bfe332d829;hb=66ad3dea875e1f8edcc65c02aca1ba7bcfa71a7d;hp=e98a8fba39f2c23c510140433342e3d3a1047c16;hpb=ed36fb56ac5aff2d606b35be175eb32657d6ec56;p=lgpl%2Fargeo-commons.git diff --git a/basic/runtime/org.argeo.basic.nodeps/src/main/java/org/argeo/util/tabular/TabularRowIterator.java b/basic/runtime/org.argeo.basic.nodeps/src/main/java/org/argeo/util/tabular/TabularRowIterator.java index e98a8fba3..e75cff8c1 100644 --- a/basic/runtime/org.argeo.basic.nodeps/src/main/java/org/argeo/util/tabular/TabularRowIterator.java +++ b/basic/runtime/org.argeo.basic.nodeps/src/main/java/org/argeo/util/tabular/TabularRowIterator.java @@ -5,8 +5,8 @@ import java.util.Iterator; /** Navigation of rows */ public interface TabularRowIterator extends Iterator { /** - * 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(); }