Improve javadocs relating to getLastRowNumber

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@675792 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2008-07-10 22:39:53 +00:00
parent 53e835c9c6
commit a817230732
1 changed files with 12 additions and 5 deletions

View File

@ -347,18 +347,25 @@ public final class HSSFSheet {
} }
/** /**
* gets the first row on the sheet * Gets the first row on the sheet
* @return the number of the first logical row on the sheet * @return the number of the first logical row on the sheet, zero based
*/ */
public int getFirstRowNum() public int getFirstRowNum()
{ {
return firstrow; return firstrow;
} }
/** /**
* gets the last row on the sheet * Gets the number last row on the sheet.
* @return last row contained n this sheet. * Owing to idiosyncrasies in the excel file
* format, if the result of calling this method
* is zero, you can't tell if that means there
* are zero rows on the sheet, or one at
* position zero. For that case, additionally
* call {@link #getPhysicalNumberOfRows()} to
* tell if there is a row at position zero
* or not.
* @return the number of the last row contained in this sheet, zero based.
*/ */
public int getLastRowNum() public int getLastRowNum()