]> source.dussan.org Git - poi.git/commitdiff
Improve JavaDocs about iterators and gaps
authorNick Burch <nick@apache.org>
Tue, 6 May 2008 15:37:45 +0000 (15:37 +0000)
committerNick Burch <nick@apache.org>
Tue, 6 May 2008 15:37:45 +0000 (15:37 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@653815 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/usermodel/HSSFRow.java
src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java

index 0444843d2e0e6b29ade96866f651306f1929253f..1b83bced9c3e9adf2a4ee6877797fb50fc12d279 100644 (file)
@@ -479,8 +479,10 @@ public final class HSSFRow implements Comparable {
     }
 
     /**
-     * @return cell iterator of the physically defined cells.  Note element 4 may
-     * actually be row cell depending on how many are defined!
+     * @return cell iterator of the physically defined cells. 
+     * Note that the 4th element might well not be cell 4, as the iterator
+     *  will not return un-defined (null) cells.
+     * Call getCellNum() on the returned cells to know which cell they are.
      */
     public Iterator cellIterator()
     {
index b56122688edfa076bbcbb3faca80d62af670e894..6d817a1ed9ee7b3d16fbf79c69e589d5985f7cf9 100644 (file)
@@ -699,6 +699,7 @@ public final class HSSFSheet {
     /**
      * @return an iterator of the PHYSICAL rows.  Meaning the 3rd element may not
      * be the third row if say for instance the second row is undefined.
+     * Call getRowNum() on each row if you care which one it is.
      */
     public Iterator rowIterator()
     {