1052 Commits (XLookupFunction)

Author SHA1 Message Date
antony liu 12a66ca8e1 POI:bug 59872: add Sheet.getHyperlink(CellAddress) 6 years ago
antony liu 5c2594c93c POI:bug 59833: add getFillPatternEnum and setFillPattern(FillPatternType) to CellStyle; consolidate duplicated FillPattern constants in CellStyle to FillPatternType enum 6 years ago
antony liu f092a5e24b POI:bug 56154: get and set last modified by user property; patch from Danil Lopatin 6 years ago
antony liu b73ea107b5 POI:bug 59814: clear evaluation workbook and evaluation sheet caches. Patch from Greg Woolsey. 6 years ago
antony liu 79b316b620 POI:bug 59796: XSSFTable#getRowCount off-by-one error 6 years ago
antony liu cd31bf46a9 POI:bug 59795: add method to synchronize start and stop cell references with CTTable 6 years ago
antony liu 6680ac8708 POI:bug 59773: move loop invariants outside of loop or change for loops to for-each loops 6 years ago
antony liu 7bf0b24859 POI:bug 59773: move loop invariants outside of loop or change for loops to for-each loops 6 years ago
antony liu 2e53453e18 POI:don't shadow drawing field from XSSFShape in XSSFGraphicFrame 6 years ago
antony liu 3c3cfa4677 POI:sonar fixes 6 years ago
antony liu 7799252bd5 POI:deprecated constants pointing to MissingCellPolicy - use enum instead 6 years ago
antony liu 22f7aba75a POI:bug 59748: replace Hashtable with HashMap; contributed by Axel Howind 6 years ago
antony liu 6348046508 POI:#59746 XSSF support for files from certain alternate tools where the row XML is missing the row number 6 years ago
antony liu f180f0077e POI:#59743 - ZipSecureFile throwing "zip bomb detected" exception when writing SXSSFWorkbook 6 years ago
antony liu 4945daaa47 POI:#59717 POIXMLProperties helper methods for reading and changing OOXML document thumbnails 6 years ago
antony liu ac0757a15d POI:bug 56781: disallow names with symbols, except underscore, period, and backslash 6 years ago
antony liu ad40d694f0 POI:bug 59719: add unit test and comments/javadocs from Greg Woolsey for XSSFDataVAlidationConstraint 6 years ago
antony liu 2c0e23264e POI: bug 59731: start migrating methods relating to row-shifting in HSSFSheet to HSSFRowShifter; consolidate with XSSFRowShifter into RowShifter 6 years ago
antony liu e82a7aa8b9 POI:bug 59730: promote XSSFSheet#removeMergedRegions to Sheet interface 6 years ago
antony liu 45cccf7158 POI:bug 56454: keep XSSFRowShifter#shiftMerged in sync with HSSFSheet: when shifting rows, shift merged regions (even when the merged region does not include column 0) 6 years ago
antony liu b8df850306 POI:bug 56454: add CellRangeAddress#containsRow and containsColumn 6 years ago
antony liu 79f01efa2d POI:bug 56958: slightly improve performance when checking array formulas 6 years ago
antony liu fe3f367adc POI:bug 59645: add Page Setup Print row and column headings support for Common SS 6 years ago
antony liu 75115e9b26 POI: bug 59719: parse static list text properly; patch from Greg Woolsey 6 years ago
antony liu 1a7fe26552 POI:bug 59718: deprecate get/setBoldweight. Use get/setBold 6 years ago
antony liu addbecb815 POI:bug 59170: Removed deprecated methods in POIFS, SS, HSSF, and XSSF 6 years ago
antony liu 6e4114b58a POI:bug 59432: move loop invariants outside the loop to marginally improve code execution speed 6 years ago
antony liu 4243878383 POI:bug 56958: validate array formulas wasn't correctly checking for overlap with a merged region 6 years ago
antony liu 7556515bd4 POI:bug 59279: add Comment.equals and hashCode methods 6 years ago
antony liu 56c58b3398 POI:bug 59170: remove deprecated o.a.p.xwpf.model.XWPFHyperlinkDecorator class 6 years ago
antony liu 0c3ea9e736 POI:bug 55385: deprecate Font.getBoldweight and Font.setBoldweight 6 years ago
antony liu c32bc17ff5 POI:bug 59170: remove deprecated XSSFExcelExtractor(String) 6 years ago
antony liu ccdb5a50fc POI:bug 59170: remove deprecated XSSFFontFormatting#getXSSFColor that was deprecated in 3.13 beta 1 6 years ago
antony liu 170faa1d7d POI:bug 57840: make it easier to replace _rows implementation (HashMap?) by making it final 6 years ago
antony liu 3e811883f4 POI:findbugs: fix URF_UNREAD_FIELD warnings 6 years ago
antony liu 552f3cdee3 POI:findbugs fixes 6 years ago
antony liu b75270211e POI:bug 57840: lazily compute hashCode; patch from Greg Woolsey 6 years ago
antony liu df9b891b85 POI: bug 57840: re-use XSSFEvaluationWorkbook when expanding a shared formula; patch from Greg Woolsey 6 years ago
antony liu f9ec477009 POI:bug 57840: cache XSSFEvaluationCell and XSSFEvaluationSheet instances (30% evaluation speedup due to caching and faster cell lookup); patch from Greg Woolsey 6 years ago
antony liu ccbb0ea568 rename namespace NPOI.SS.Formula.Udf to NPOI.SS.Formula.UDF. 6 years ago
antony liu b1a5cc2579 POI:bug 57840: initialize the column header cache with 50% empty space 6 years ago
antony liu f6180fd86a POI:bug 57840: add unit test for XSSFTable.findColumnIndex 6 years ago
antony liu 0462f38f41 POI:bug 57840: fix to reuse XSSFEvaluationWorkbook inside itself; patch from Greg Woolsey 6 years ago
antony liu 03bc0d5819 POI:bug 57840: check for null to avoid NPE; add unit test for XSSFWorkbook.getTable() 6 years ago
antony liu 3fe86da6a6 POI:bug 57840: move XSSFTable cache from XSSFWorkbook to XSSFEvaluationWorkbook where staleness is less likely to cause problems for users 6 years ago
antony liu b01422e254 POI:bug 57840: move XSSFTable cache from XSSFWorkbook to XSSFEvaluationWorkbook where staleness is less likely to cause problems for users 6 years ago
antony liu 433483716d POI:bug 57840: apply patch from Daniel Livshen and Greg Woolsey to get structured references working in XSSFWorkbook formulas 6 years ago
antony liu 3679313e4d POI:Fix some Sonar issues and some IntelliJ warnings 6 years ago
antony liu 2f907eb0bf POI:Avoid NPE in XWPFTableCell, taken from https://github.com/prasad-babu/poi/tree/WORKING_BRANCH 6 years ago
antony liu 33bc6acd87 POI:Bug 57838: Also remove comments when removing a row 6 years ago