]> source.dussan.org Git - poi.git/commitdiff
Bug 30635: getLastCellNum return last cell num + 1. Made this clear in javadoc.
authorJason Height <jheight@apache.org>
Mon, 11 Sep 2006 11:34:49 +0000 (11:34 +0000)
committerJason Height <jheight@apache.org>
Mon, 11 Sep 2006 11:34:49 +0000 (11:34 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@442183 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/record/RowRecord.java
src/java/org/apache/poi/hssf/usermodel/HSSFRow.java

index 29e701bc1f5cecd65c7f477ae93b26f59bc85fd0..fcf3f0edf41dc9bd7965100f2506dfd5754b1b54 100644 (file)
@@ -258,8 +258,8 @@ public class RowRecord
     }
 
     /**
-     * get the logical col number for the last cell this row (0 based index)
-     * @return col - the col number
+     * get the logical col number for the last cell this row plus one (0 based index)
+     * @return col - the last col number + 1
      */
 
     public short getLastCol()
index ae994a2845c78d4be91b1a8e3c86764535601f15..917ff86342ea495273b6eb9eabb1b0cc9caa2bf5 100644 (file)
@@ -275,7 +275,7 @@ public class HSSFRow
 
     /**
      * get the number of the first cell contained in this row.
-     * @return short representing the first logical cell in the row
+     * @return short representing the first logical cell in the row, or -1 if the row does not contain any cells.
      */
 
     public short getFirstCellNum()
@@ -287,8 +287,8 @@ public class HSSFRow
     }
 
     /**
-     * get the number of the last cell contained in this row.
-     * @return short representing the last logical cell in the row
+     * gets the number of the last cell contained in this row <b>PLUS ONE</b>. 
+     * @return short representing the last logical cell in the row <b>PLUS ONE</b>, or -1 if the row does not contain any cells.
      */
 
     public short getLastCellNum()