replace version number 4.0.2

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1856665 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2019-03-31 08:54:44 +00:00
parent 48ac6b4d02
commit 9576ab77f9
5 changed files with 5 additions and 5 deletions

View File

@ -48,7 +48,7 @@ final class HSSFEvaluationSheet implements EvaluationSheet {
/* (non-Javadoc)
* @see org.apache.poi.ss.formula.EvaluationSheet#isRowHidden(int)
* @since POI 4.0.2
* @since POI 4.1.0
*/
public boolean isRowHidden(int rowIndex) {
HSSFRow row = _hs.getRow(rowIndex);

View File

@ -53,7 +53,7 @@ public interface EvaluationSheet {
* Used by SUBTOTAL and similar functions that have options to ignore hidden rows
* @param rowIndex
* @return true if the row is hidden, false if not
* @since POI 4.0.2
* @since POI 4.1.0
*/
public boolean isRowHidden(int rowIndex);
}

View File

@ -64,7 +64,7 @@ final class ForkedEvaluationSheet implements EvaluationSheet {
/* (non-Javadoc)
* @see org.apache.poi.ss.formula.EvaluationSheet#isRowHidden(int)
* @since POI 4.0.2
* @since POI 4.1.0
*/
public boolean isRowHidden(int rowIndex) {
return _masterSheet.isRowHidden(rowIndex);

View File

@ -47,7 +47,7 @@ final class SXSSFEvaluationSheet implements EvaluationSheet {
/* (non-Javadoc)
* @see org.apache.poi.ss.formula.EvaluationSheet#isRowHidden(int)
* @since POI 4.0.2
* @since POI 4.1.0
*/
public boolean isRowHidden(int rowIndex) {
SXSSFRow row = _xs.getRow(rowIndex);

View File

@ -54,7 +54,7 @@ final class XSSFEvaluationSheet implements EvaluationSheet {
/* (non-Javadoc)
* @see org.apache.poi.ss.formula.EvaluationSheet#isRowHidden(int)
* @since POI 4.0.2
* @since POI 4.1.0
*/
public boolean isRowHidden(int rowIndex) {
final XSSFRow row = _xs.getRow(rowIndex);