mirror of
https://github.com/apache/poi.git
synced 2026-02-27 20:40:08 +08:00
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:
parent
48ac6b4d02
commit
9576ab77f9
@ -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);
|
||||
|
||||
@ -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);
|
||||
}
|
||||
|
||||
@ -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);
|
||||
|
||||
@ -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);
|
||||
|
||||
@ -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…
x
Reference in New Issue
Block a user