]> source.dussan.org Git - poi.git/commitdiff
[github-319] fix javadoc on setColumnHidden. Thanks to CodeMonkeyLab. This closes...
authorPJ Fanning <fanningpj@apache.org>
Tue, 5 Apr 2022 10:43:54 +0000 (10:43 +0000)
committerPJ Fanning <fanningpj@apache.org>
Tue, 5 Apr 2022 10:43:54 +0000 (10:43 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1899580 13f79535-47bb-0310-9956-ffa450edef68

poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java
poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFSheet.java
poi/src/main/java/org/apache/poi/hssf/model/InternalSheet.java
poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFSheet.java
poi/src/main/java/org/apache/poi/ss/usermodel/Sheet.java

index 8b6ca89ce6e58b7ede5095a22b2dc2c425799213..081a1f4b657d1c25c5e53de11e23611705ebe92e 100644 (file)
@@ -199,10 +199,10 @@ public class SXSSFSheet implements Sheet, OoxmlSheetExtensions {
     }
 
     /**
-     * Get the visibility state for a given column
+     * Set the visibility state for a given column
      *
      * @param columnIndex - the column to get (0-based)
-     * @param hidden - the visiblity state of the column
+     * @param hidden - the visibility state of the column
      */
     @Override
     public void setColumnHidden(int columnIndex, boolean hidden) {
index cd001179c6f22493552057886758260105b6fd05..783c70a0183fd361ae4b42949a24d95c4cb86fd5 100644 (file)
@@ -2455,10 +2455,10 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet, OoxmlSheetEx
     }
 
     /**
-     * Get the visibility state for a given column.
+     * Set the visibility state for a given column.
      *
      * @param columnIndex - the column to get (0-based)
-     * @param hidden - the visiblity state of the column
+     * @param hidden - the visibility state of the column
      */
     @Override
     public void setColumnHidden(int columnIndex, boolean hidden) {
index e580fd86accd414ed8f810358f32fc1c3c27c81f..8deeec15a3c958e63394ff9db94859861eb2031a 100644 (file)
@@ -1066,13 +1066,14 @@ public final class InternalSheet {
     }
 
     /**
-     * Get the hidden property for a given column.
+     * Set the hidden property for a given column.
      * @param column - the column number
      * @param hidden - whether the column is hidden or not
      */
     public void setColumnHidden(int column, boolean hidden) {
         setColumn( column, null, null, null, hidden, null);
     }
+
     public void setDefaultColumnStyle(int column, int styleIndex) {
         setColumn(column, (short) styleIndex, null, null, null, null);
     }
index 5026f001a267cb3b0d14b51b2a0f476cc35b65c9..bf8795981241b8f930632cb46c408c74ef78e1f2 100644 (file)
@@ -476,10 +476,10 @@ public final class HSSFSheet implements Sheet {
     }
 
     /**
-     * Get the visibility state for a given column.
+     * Set the visibility state for a given column.
      *
      * @param columnIndex - the column to get (0-based)
-     * @param hidden      - the visiblity state of the column
+     * @param hidden      - the visibility state of the column
      */
     @Override
     public void setColumnHidden(int columnIndex, boolean hidden) {
index ee03e35ea76cbb7b1469d757244c01ece91788c1..fd946eb45e25f4a06172320b25d38c95e8126cde 100644 (file)
@@ -118,7 +118,7 @@ public interface Sheet extends Iterable<Row> {
     int getLastRowNum();
 
     /**
-     * Get the visibility state for a given column
+     * Set the visibility state for a given column
      *
      * @param columnIndex - the column to get (0-based)
      * @param hidden - the visibility state of the column