aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/poi/hssf
Commit message (Collapse)AuthorAgeFilesLines
* Provide a createOrUpdateDocument method at the POIFS level, and use to ↵Nick Burch2016-07-211-1/+1
| | | | | | simplify writing code #57919 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753739 13f79535-47bb-0310-9956-ffa450edef68
* If doing an in-place write, update the properties tooNick Burch2016-07-201-0/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753623 13f79535-47bb-0310-9956-ffa450edef68
* #57919 Add in-place and new-File write methods to POIDocumentNick Burch2016-07-201-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753619 13f79535-47bb-0310-9956-ffa450edef68
* Prepare for pushing write() and write(File) to POIDocumentNick Burch2016-07-201-19/+9
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753595 13f79535-47bb-0310-9956-ffa450edef68
* #57919 Start on support for writing to a new File (faster than OutputStream)Nick Burch2016-07-201-30/+61
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753486 13f79535-47bb-0310-9956-ffa450edef68
* 52122: Excel does not handle conditional formatting based on formula ↵Dominik Stadler2016-07-181-2/+10
| | | | | | correctly unless recalculation is forced git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753199 13f79535-47bb-0310-9956-ffa450edef68
* Some warnings/improvements suggested by IntelliJDominik Stadler2016-07-182-9/+8
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753188 13f79535-47bb-0310-9956-ffa450edef68
* Fix one more place where stream were left open when an exception is thrownDominik Stadler2016-07-171-18/+20
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753123 13f79535-47bb-0310-9956-ffa450edef68
* bug 57919: add performance note to javadocs about using ↵Javen O'Neal2016-07-171-0/+5
| | | | | | BufferedOutputStreams on Document.write(OutputStream) if underlying resource is high latency git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753112 13f79535-47bb-0310-9956-ffa450edef68
* #57919 Provide an initial in-place write method for HSSFWorkbookNick Burch2016-07-171-1/+36
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753103 13f79535-47bb-0310-9956-ffa450edef68
* bug 59873: javadoc fixJaven O'Neal2016-07-171-2/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753043 13f79535-47bb-0310-9956-ffa450edef68
* bug 59783: replace deprecated Hyperlink.LINK_* and Hyperlink.getType usageJaven O'Neal2016-07-171-5/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753040 13f79535-47bb-0310-9956-ffa450edef68
* Bug 59665: Using HSSFWorkbook#setSheetOrder to move sheets to the end ↵Dominik Stadler2016-07-171-2/+3
| | | | | | corrupts bspos value in WorkbookRecordList git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753038 13f79535-47bb-0310-9956-ffa450edef68
* bug 59873: replace Hyperlink.LINK_* int constants with HyperlinkType enumJaven O'Neal2016-07-172-40/+56
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753035 13f79535-47bb-0310-9956-ffa450edef68
* add @Override annotations to CreationHelper classesJaven O'Neal2016-07-171-7/+16
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753017 13f79535-47bb-0310-9956-ffa450edef68
* bug 59872: add @since annotation to Sheet#getHyperlink(CellAddress)Javen O'Neal2016-07-171-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753015 13f79535-47bb-0310-9956-ffa450edef68
* bug 59872: add Sheet.getHyperlink(CellAddress)Javen O'Neal2016-07-171-0/+11
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753009 13f79535-47bb-0310-9956-ffa450edef68
* Apply patch to fix bug 59740: Sheet.shiftRows incorrectly shifts merged ↵Dominik Stadler2016-07-161-1/+2
| | | | | | region on exists merged region git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1752997 13f79535-47bb-0310-9956-ffa450edef68
* JDK8 javadocsJaven O'Neal2016-07-151-2/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1752781 13f79535-47bb-0310-9956-ffa450edef68
* bug 59837: update CellUtil to handle VerticalAlignment and ↵Javen O'Neal2016-07-101-2/+18
| | | | | | HorizontalAlignment enums git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1752077 13f79535-47bb-0310-9956-ffa450edef68
* bug 59837: replace CellStyle.ALIGN_ and CellStyle.VERTICAL_ constants with ↵Javen O'Neal2016-07-101-0/+45
| | | | | | HorizontalAlignment and VerticalAlignment enums git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1752066 13f79535-47bb-0310-9956-ffa450edef68
* javadoc fixesJaven O'Neal2016-07-102-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1752063 13f79535-47bb-0310-9956-ffa450edef68
* javadocs fixes (jdk8)Andreas Beeker2016-07-0925-171/+411
| | | | | | eclipse source clean-ups (final members, override annotations, for-each loops) git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1752037 13f79535-47bb-0310-9956-ffa450edef68
* bug 59833: add getFillPatternEnum and setFillPattern(FillPatternType) to ↵Javen O'Neal2016-07-081-3/+28
| | | | | | CellStyle; consolidate duplicated FillPattern constants in CellStyle to FillPatternType enum git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751972 13f79535-47bb-0310-9956-ffa450edef68
* add @Internal annotations to implementations of Internal EvaluationWorkbook ↵Javen O'Neal2016-07-072-1/+11
| | | | | | and EvaluationSheet interfaces; added @since annotations to clearAllCachedResultValues added in r1751836. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751843 13f79535-47bb-0310-9956-ffa450edef68
* whitespace (tabs to spaces)Javen O'Neal2016-07-071-26/+26
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751838 13f79535-47bb-0310-9956-ffa450edef68
* add @Override annotations to spreadsheet formula Evaluation classesJaven O'Neal2016-07-072-1/+32
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751837 13f79535-47bb-0310-9956-ffa450edef68
* bug 59814: clear evaluation workbook and evaluation sheet caches. Patch from ↵Javen O'Neal2016-07-072-0/+8
| | | | | | Greg Woolsey. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751836 13f79535-47bb-0310-9956-ffa450edef68
* +svn:eol-style=nativeJaven O'Neal2016-07-051-6/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751572 13f79535-47bb-0310-9956-ffa450edef68
* bug 59804: indicate when features were @Internal-izedJaven O'Neal2016-07-053-11/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751570 13f79535-47bb-0310-9956-ffa450edef68
* javadocs fixes (jdk8)Andreas Beeker2016-07-056-101/+119
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751568 13f79535-47bb-0310-9956-ffa450edef68
* javadocs fixes (jdk8)Andreas Beeker2016-07-0414-37/+183
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751387 13f79535-47bb-0310-9956-ffa450edef68
* bug 59791: add @since to Cell, EvaluationCell, and FormulaEvaluator CellType ↵Javen O'Neal2016-07-043-29/+41
| | | | | | getter javadocs git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751264 13f79535-47bb-0310-9956-ffa450edef68
* bug 59791: FormulaEvaluator#evaluateFormulaCell(Cell) should return an ↵Javen O'Neal2016-07-041-10/+33
| | | | | | integer for backwards compatibility git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751261 13f79535-47bb-0310-9956-ffa450edef68
* bug 59791: getCellType and getCachedFormulaResultType should return an ↵Javen O'Neal2016-07-046-19/+77
| | | | | | integer for backwards compatibility git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751256 13f79535-47bb-0310-9956-ffa450edef68
* reorganize imports (remove unused imports, sort alphabetically)Javen O'Neal2016-07-044-5/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751244 13f79535-47bb-0310-9956-ffa450edef68
* bug 59791: replace deprecated Cell.CELL_TYPE_* usage with CellType.*Javen O'Neal2016-07-044-6/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751240 13f79535-47bb-0310-9956-ffa450edef68
* bug 59791: convert Cell Type to an enumJaven O'Neal2016-07-048-197/+224
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751237 13f79535-47bb-0310-9956-ffa450edef68
* bug 59790: convert FormulaType class to enumJaven O'Neal2016-07-042-4/+45
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751210 13f79535-47bb-0310-9956-ffa450edef68
* javadocs fixJaven O'Neal2016-07-041-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751209 13f79535-47bb-0310-9956-ffa450edef68
* bug 59789: move HSSFComment shifting due to rowShift outside of for-loop for ↵Javen O'Neal2016-07-041-28/+36
| | | | | | performance git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751198 13f79535-47bb-0310-9956-ffa450edef68
* bug 59773: replace for loops with for-each loops; javadocs fixes for JDK8Javen O'Neal2016-07-041-0/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751193 13f79535-47bb-0310-9956-ffa450edef68
* javadocs fixes (jdk8)Andreas Beeker2016-07-033-17/+107
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751184 13f79535-47bb-0310-9956-ffa450edef68
* deprecated DrawingManagerAndreas Beeker2016-07-031-0/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751175 13f79535-47bb-0310-9956-ffa450edef68
* #59170 - Remove deprecated classes (POI 3.15) - o.a.p.hssf.model.*Shape ↵Andreas Beeker2016-07-0310-1146/+8
| | | | | | classes removed git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751174 13f79535-47bb-0310-9956-ffa450edef68
* javadocs fixes (jdk8)Andreas Beeker2016-07-0316-101/+167
| | | | | | (eclipse) source clean ups git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751165 13f79535-47bb-0310-9956-ffa450edef68
* bug 59773: move loop invariants outside of loop or change for loops to ↵Javen O'Neal2016-07-022-3/+7
| | | | | | for-each loops git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751086 13f79535-47bb-0310-9956-ffa450edef68
* bug 59781: promote to Common SS: move PaneInformation from o.a.p.hssf.util ↵Javen O'Neal2016-07-023-82/+7
| | | | | | to o.a.p.ss.util git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751044 13f79535-47bb-0310-9956-ffa450edef68
* deprecate o.a.p.hssf.util.AreaReference as it shadows ↵Javen O'Neal2016-07-021-1/+4
| | | | | | o.a.p.ss.util.AreaReference (findbugs) and provides no additional functionality git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751021 13f79535-47bb-0310-9956-ffa450edef68
* a few performance fixes to speed-up the testsAndreas Beeker2016-06-303-27/+57
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1750867 13f79535-47bb-0310-9956-ffa450edef68