}
/**
- * 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()
/**
* 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()
}
/**
- * 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()