summaryrefslogtreecommitdiffstats
path: root/src/java
Commit message (Collapse)AuthorAgeFilesLines
* deprecated constants pointing to MissingCellPolicy - use enum insteadAndreas Beeker2016-06-245-84/+123
| | | | | | javadocs fixes (jdk8) git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1750172 13f79535-47bb-0310-9956-ffa450edef68
* Sonar fixesAndreas Beeker2016-06-248-31/+21
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1750171 13f79535-47bb-0310-9956-ffa450edef68
* bug 59748: replace Hashtable with HashMap; contributed by Axel HowindJaven O'Neal2016-06-243-17/+16
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1750168 13f79535-47bb-0310-9956-ffa450edef68
* javadoc fixes (jdk8)Andreas Beeker2016-06-2239-232/+189
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749794 13f79535-47bb-0310-9956-ffa450edef68
* Provide an alternate method to get the OLE2 thumbnail that decodesNick Burch2016-06-211-4/+17
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749526 13f79535-47bb-0310-9956-ffa450edef68
* bug 56781: make Name#validateName compatible on Java 6 (no Regex ↵Javen O'Neal2016-06-201-10/+29
| | | | | | \p{IsAlphabetic} metaclasses git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749305 13f79535-47bb-0310-9956-ffa450edef68
* bug 56781: disallow names with symbols, except underscore, period, and backslashJaven O'Neal2016-06-202-5/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749293 13f79535-47bb-0310-9956-ffa450edef68
* add comments, adjust whitespaceJaven O'Neal2016-06-202-5/+14
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749276 13f79535-47bb-0310-9956-ffa450edef68
* whitespace (tabs to spaces); +svnprop svn:eol-style=nativeJaven O'Neal2016-06-201-27/+27
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749274 13f79535-47bb-0310-9956-ffa450edef68
* bug 59731: start migrating methods relating to row-shifting in HSSFSheet to ↵Javen O'Neal2016-06-203-43/+197
| | | | | | HSSFRowShifter; consolidate with XSSFRowShifter into RowShifter git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749262 13f79535-47bb-0310-9956-ffa450edef68
* bug 59730: promote XSSFSheet#removeMergedRegions to Sheet interfaceJaven O'Neal2016-06-202-1/+22
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749258 13f79535-47bb-0310-9956-ffa450edef68
* bug 56454: keep XSSFRowShifter#shiftMerged in sync with HSSFSheet: when ↵Javen O'Neal2016-06-201-0/+1
| | | | | | shifting rows, shift merged regions (even when the merged region does not include column 0) git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749248 13f79535-47bb-0310-9956-ffa450edef68
* bug 56454: deprecate shiftMerged with unused parameter, move loop-invariant ↵Javen O'Neal2016-06-201-9/+20
| | | | | | out of for-loop git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749247 13f79535-47bb-0310-9956-ffa450edef68
* object-oriented methods are preferred over utility classes for discoverabilityJaven O'Neal2016-06-201-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749245 13f79535-47bb-0310-9956-ffa450edef68
* bug 59729: update CellRangeUtilJaven O'Neal2016-06-201-34/+48
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749243 13f79535-47bb-0310-9956-ffa450edef68
* whitespace (tabs to spaces)Javen O'Neal2016-06-201-31/+28
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749241 13f79535-47bb-0310-9956-ffa450edef68
* mv o.a.p.hssf.record.cf.CellRangeUtil o.a.p.ss.util.CellRangeUtilJaven O'Neal2016-06-202-7/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749240 13f79535-47bb-0310-9956-ffa450edef68
* bug 56454: add CellRangeAddress#containsRow and containsColumnJaven O'Neal2016-06-201-2/+24
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749239 13f79535-47bb-0310-9956-ffa450edef68
* findbugs fixesAndreas Beeker2016-06-201-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749238 13f79535-47bb-0310-9956-ffa450edef68
* bug 56958: replace java.awt.Rectangle#intersects with native implementation ↵Javen O'Neal2016-06-191-32/+5
| | | | | | to determine if CellRangeAddresses intersect; patch from Yaniv Kunda git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749226 13f79535-47bb-0310-9956-ffa450edef68
* Regression fixesAndreas Beeker2016-06-191-10/+80
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749224 13f79535-47bb-0310-9956-ffa450edef68
* bug 56958: slightly improve performance when checking array formulasJaven O'Neal2016-06-191-3/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749219 13f79535-47bb-0310-9956-ffa450edef68
* #59724 Take advantage of all POIDocument classes being Closeable to tidy the ↵Nick Burch2016-06-193-17/+5
| | | | | | OLE2 text extractor closing git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749214 13f79535-47bb-0310-9956-ffa450edef68
* #59724 Provide Closeable on all OLE2-based POIDocument typesNick Burch2016-06-192-9/+23
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749213 13f79535-47bb-0310-9956-ffa450edef68
* bug 56958: patch from Yaniv Kunda: check that cells containing array ↵Javen O'Neal2016-06-191-3/+1
| | | | | | formulas do not belong to a merged region git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749210 13f79535-47bb-0310-9956-ffa450edef68
* bug 59645: add Page Setup Print row and column headings support for Common SSJaven O'Neal2016-06-193-11/+86
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749191 13f79535-47bb-0310-9956-ffa450edef68
* update javadoc for clarification about non-literal listsJaven O'Neal2016-06-191-0/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749133 13f79535-47bb-0310-9956-ffa450edef68
* findbugs fixes - ME_MUTABLE_ENUM_FIELDAndreas Beeker2016-06-192-4/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749116 13f79535-47bb-0310-9956-ffa450edef68
* add unit test for HSSFWorkbook.getSelectedTabsJaven O'Neal2016-06-181-10/+25
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748899 13f79535-47bb-0310-9956-ffa450edef68
* bug 59718: deprecate get/setBoldweight. Use get/setBoldJaven O'Neal2016-06-182-2/+39
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748898 13f79535-47bb-0310-9956-ffa450edef68
* bug 59170: Removed deprecated methods in POIFS, SS, HSSF, and XSSFJaven O'Neal2016-06-1828-536/+45
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748897 13f79535-47bb-0310-9956-ffa450edef68
* FunctionEval is a utility class. It should not have a public default constructorJaven O'Neal2016-06-171-0/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748830 13f79535-47bb-0310-9956-ffa450edef68
* bug 59279: add Comment.equals and hashCode methodsJaven O'Neal2016-06-171-0/+14
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748814 13f79535-47bb-0310-9956-ffa450edef68
* move loop invariant outside of loopJaven O'Neal2016-06-171-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748809 13f79535-47bb-0310-9956-ffa450edef68
* bug 59170: add version when deprecatedJaven O'Neal2016-06-171-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748793 13f79535-47bb-0310-9956-ffa450edef68
* bug 59170: deprecate o.a.p.hssf.model.PictureShapeJaven O'Neal2016-06-171-0/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748792 13f79535-47bb-0310-9956-ffa450edef68
* bug 55385: deprecate Font.getBoldweight and Font.setBoldweightJaven O'Neal2016-06-162-3/+13
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748658 13f79535-47bb-0310-9956-ffa450edef68
* fix javadocs @link error for removed o.a.p.hssf.util.CellRangeAddressJaven O'Neal2016-06-151-2/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748496 13f79535-47bb-0310-9956-ffa450edef68
* bug 59170: remove deprecated methodsJaven O'Neal2016-06-158-203/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748483 13f79535-47bb-0310-9956-ffa450edef68
* bug 59170: remove deprecated methods in o.a.p.hpsf.wellknown.SectionIDMapJaven O'Neal2016-06-151-32/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748481 13f79535-47bb-0310-9956-ffa450edef68
* bug 59170: remove deprecated hpsf.Constants classJaven O'Neal2016-06-151-195/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748480 13f79535-47bb-0310-9956-ffa450edef68
* remove RegionUtil referenceJaven O'Neal2016-06-141-3/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748473 13f79535-47bb-0310-9956-ffa450edef68
* javadoc fixes (jdk8)Andreas Beeker2016-06-1348-224/+137
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748328 13f79535-47bb-0310-9956-ffa450edef68
* reverted changes of r1747942 and deprecated insteadAndreas Beeker2016-06-135-11/+27
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748313 13f79535-47bb-0310-9956-ffa450edef68
* back out changes for bug 58787: will replae BorderPropertyTemplate with a ↵Javen O'Neal2016-06-132-993/+0
| | | | | | more general CellStyleTemplate in the future git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748293 13f79535-47bb-0310-9956-ffa450edef68
* Sonar: 'static modifier out of order with the JLS suggestions.remove No need ↵Javen O'Neal2016-06-131-4/+8
| | | | | | to check for null before an instanceof; the instanceof keyword returns false when given a null argument. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748175 13f79535-47bb-0310-9956-ffa450edef68
* add HSSFCell.setCachedErrorResult(FormulaError)Javen O'Neal2016-06-133-9/+23
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748174 13f79535-47bb-0310-9956-ffa450edef68
* type check error code when setting cell error value on HSSFCellJaven O'Neal2016-06-131-3/+20
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748172 13f79535-47bb-0310-9956-ffa450edef68
* add periods for complete sentencesJaven O'Neal2016-06-131-23/+23
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748166 13f79535-47bb-0310-9956-ffa450edef68
* Javadoc fixesNick Burch2016-06-131-5/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748158 13f79535-47bb-0310-9956-ffa450edef68