diff options
author | Yegor Kozlov <yegor@apache.org> | 2008-10-21 17:56:34 +0000 |
---|---|---|
committer | Yegor Kozlov <yegor@apache.org> | 2008-10-21 17:56:34 +0000 |
commit | c63434df63697adf242805f7a0bde52d767907d2 (patch) | |
tree | 4c7fb255f6e50c5e462b424b08e29d6c37b3f125 /src/examples/jsp | |
parent | 6d185ee425173567857cdbc2065b365d992a61f7 (diff) | |
download | poi-c63434df63697adf242805f7a0bde52d767907d2.tar.gz poi-c63434df63697adf242805f7a0bde52d767907d2.zip |
1. implemented XSSFSheet.autosizeColumn(), for now mostly duplicated HSSF code, will be refactored in future.2. fixed bug #45974: XSSFCell.getCellStyle can return null3. more code cleanup and reaftoring, removed usages of obsolete XSSFCell.getCellNum() in favor of XSSFCell.getColumnIndex(), also more javadoc in core classes
4. fixed a blocker: calling XSSFSheet.getNumMergedRegions() resulted in unreadable workbook, this methods structurally modified worksheet and added unnecessary data
git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@706691 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/examples/jsp')
-rw-r--r-- | src/examples/jsp/HSSFExample.jsp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/examples/jsp/HSSFExample.jsp b/src/examples/jsp/HSSFExample.jsp index 97b62a5531..b641846bd1 100644 --- a/src/examples/jsp/HSSFExample.jsp +++ b/src/examples/jsp/HSSFExample.jsp @@ -92,7 +92,7 @@ row.getRowNum() %> </b> %> <%= "CELL col=" - + cell.getCellNum() + + cell.getColumnIndex() + " VALUE=" + value %> <% } |