]> source.dussan.org Git - poi.git/commitdiff
fixed javadoc for HSSFSheet.setColumnWidth and XSSFSheet setColumnWidth
authorYegor Kozlov <yegor@apache.org>
Sat, 21 Nov 2009 15:49:16 +0000 (15:49 +0000)
committerYegor Kozlov <yegor@apache.org>
Sat, 21 Nov 2009 15:49:16 +0000 (15:49 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@882931 13f79535-47bb-0310-9956-ffa450edef68

src/documentation/content/xdocs/status.xml
src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java

index b2c9c100f45260902f67e4b0d239804072074ebe..a80cd2e9e686d85c1fd06f7d104d52565ac846d3 100644 (file)
@@ -34,6 +34,7 @@
 
     <changes>
         <release version="3.6-beta1" date="2009-??-??">
+           <action dev="POI-DEVELOPERS" type="fix">48229 - fixed javadoc for  HSSFSheet.setColumnWidth and XSSFSheet setColumnWidth </action>
            <action dev="POI-DEVELOPERS" type="fix">47757 - fixed XLSX2CSV to avoid exception when processing cells with multiple "t" elements</action>
            <action dev="POI-DEVELOPERS" type="add">48195 - short-circuit evaluation of IF() and CHOOSE()</action>
            <action dev="POI-DEVELOPERS" type="add">48161 - support for text extraction from PPT master slides</action>
index 3402147f66b1a305b0375bb9147b20ae3a8ec654..c7972ecc932c04f6ba8eb720662a36a1ff4ba2a6 100644 (file)
@@ -431,7 +431,7 @@ public final class HSSFSheet implements org.apache.poi.ss.usermodel.Sheet {
      *
      * @param columnIndex - the column to set (0-based)
      * @param width - the width in units of 1/256th of a character width
-     * @throws IllegalArgumentException if width > 65536 (the maximum column width in Excel)
+     * @throws IllegalArgumentException if width > 65280 (the maximum column width in Excel)
      */
     public void setColumnWidth(int columnIndex, int width) {
         _sheet.setColumnWidth(columnIndex, width);
index 76dfabc8e8b1b8ee9230c0367d01a5fe13b02e7e..879f63357f726549ab1ba11f9cca3c73e042bc9b 100644 (file)
@@ -1671,7 +1671,7 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
      *
      * @param columnIndex - the column to set (0-based)
      * @param width - the width in units of 1/256th of a character width
-     * @throws IllegalArgumentException if width > 65536 (the maximum column width in Excel)
+     * @throws IllegalArgumentException if width > 65280 (the maximum column width in Excel)
      */
     public void setColumnWidth(int columnIndex, int width) {
         if(width > 255*256) throw new IllegalArgumentException("The maximum column width for an individual cell is 255 characters.");