Browse Source

replace version number 4.0.2

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1856665 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_4_1_0
PJ Fanning 5 years ago
parent
commit
9576ab77f9

+ 1
- 1
src/java/org/apache/poi/hssf/usermodel/HSSFEvaluationSheet.java 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);

+ 1
- 1
src/java/org/apache/poi/ss/formula/EvaluationSheet.java 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);
}

+ 1
- 1
src/java/org/apache/poi/ss/formula/eval/forked/ForkedEvaluationSheet.java 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);

+ 1
- 1
src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFEvaluationSheet.java 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);

+ 1
- 1
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFEvaluationSheet.java 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);

Loading…
Cancel
Save