55 Commits (e2280c276d2631efce1d1a8e6de64110141cc665)

Author SHA1 Message Date
  Javen O'Neal e2280c276d bug 59264: use BorderStyle for changing Cell border line style 8 years ago
  Dominik Stadler 4308b2e398 bug 58996: Don't try to unset fill color if it is not set to avoid invalid access inside the Xml structures 8 years ago
  Dominik Stadler 5068f2dfcb bug 58043: provide some compatibility between HSSF and XSSF in regards to values for CellStyle.setRotation(). Also adjust JavaDoc to mention the remaining things to note 8 years ago
  Javen O'Neal 2d0c264464 bug 58775: set an upper limit on number of data formats, default 250. 8 years ago
  Javen O'Neal ac12a2a9ef fix javadocs warnings for r1721930 (bug 58775) 8 years ago
  Dominik Stadler 2515c081a6 Bug 58084: Fix cloning Cell Styles with Borders 8 years ago
  Andreas Beeker 01a6730ea7 #58617 - Add custom safe XmlBeans type loader / rename vendor specific schema packages 8 years ago
  Dominik Stadler e62cac4f71 Use the default XmlOptions for all the invocations of the XmlBeans XML parsing 8 years ago
  Andreas Beeker 1725c9100a javadoc fixes 8 years ago
  Dominik Stadler 7da84c99f2 Eclipse warnings, close resources in CommandLineTextExtractor, add try/finally, formatting, ... 8 years ago
  Nick Burch f46ad8fd13 Javadoc tweak 8 years ago
  Dominik Stadler b6c74c8c8e Eclipse warnings, code formatting, missing @Overrides, Javadoc, missing close(), ... 8 years ago
  Nick Burch fac8191235 Avoid short wrapping on cell styles and formats > 32,767 in XSSF - format supports up to 64,000 of them #57880 9 years ago
  Dominik Stadler 7764200fe2 Bug 56295: Fix cloning of styles across workbooks and handling of default value of attribute applyFill 9 years ago
  Nick Burch 9332cdcc18 Start on HSSF/XSSF Shrink To Fit support, see bug #55661 10 years ago
  Yegor Kozlov e3f83511dc optimized unused imports and removed deprecation warnings in poi-ooxml 12 years ago
  Yegor Kozlov 1b65bb839a Bugzilla 52348: Avoid exception when creating cell style in a workbook that has an empty xf table 12 years ago
  Yegor Kozlov b8df0e686b Bug 49564 - Fixed default behaviour of XSSFCellStyle.getLocked() 13 years ago
  Nick Burch 11a75497e5 Fix bug #50956 - Correct XSSF cell style cloning between workbooks 13 years ago
  Nick Burch 5185ad3b5a Hopefully fix bug #50846 - Improve how XSSFColor inherits from Themes, by pushing the logic out of XSSFCellStyle and into ThemesTable + make it easier to call 13 years ago
  Nick Burch 6ef52df6dd More on XSSFColor and ARGB vs RGB for bug #50299 - provide methods to let you get at either 3 byte RGB, or 4 byte ARGB, whichever you prefer for your needs. 13 years ago
  Nick Burch af0085fd32 Fix bug #47582 - XSSFCellStyle support for creating a style in one workbook based on a style from a different one 13 years ago
  Nick Burch 63793d2fa5 Solution for bug #48779 - Allow you to get straight from a CellStyle to a Color, irrespective of if the Color is indexed or inline-defined 14 years ago
  Nick Burch daad262fbc Apply (with slight tweaks) patch from bug #48432 - Support for XSSF themes 14 years ago
  Yegor Kozlov 787da03838 added an annotation '@Internal' to mark program elements intended for POI internal use only, marked all public accessors to OOXML xmlbeans as @Internal 14 years ago
  Nick Burch 926f35d047 Big import tidyup using eclipse "Organise Imports" - avoid wildcard imports, and get the ordering of imports to be consistent 14 years ago
  Yegor Kozlov c7466a9210 fixes and misc refactorings suggested by Intellij 15 years ago
  Josh Micich a2cd9a942e Fixed compiler warnings - unnecessary else 15 years ago
  Josh Micich a8957e80fa Fixing compiler warnings - unnecessary typecasts 15 years ago
  Yegor Kozlov 67ba7a2098 Fixed XSLFPowerPointExtractor to properly process line breaks, see bugzilla 46568 15 years ago
  Yegor Kozlov aebb037531 moved 'throw' into else clause avoiding exception on every call of cloneStyleFrom, see bugzilla 47054 15 years ago
  Yegor Kozlov 3bd494cc62 support built-in data formats in XSSFDataFormat 15 years ago
  Yegor Kozlov f143809549 javadocs cleanup 15 years ago
  Yegor Kozlov ea3f604103 more cleanup and refactoring of ooxml code,added more unit test and 3 rich examples: LoanCalculator, CalendarDemo and TimesheetDemo, numerous odds and ends improvements 15 years ago
  Yegor Kozlov 958a47a453 1. moved ooxml enums into interfaces-jdk15, they are common and should be in the place as the interfaces 2. removed obsolete and deprecated classes 3. Fixed XSSFWorkbook.cloneSheet. Now it makes a 'true' deep copy of a sheet 4. ooxml has a compile-time dependency on scratchpad, fixed build.xml to reflect that 15 years ago
  Yegor Kozlov db877653b7 more cleanup and refactoring of the ooxml code:1. removed deprecated methods from xssf and interfaces 15 years ago
  Yegor Kozlov 968c6493a5 1. important algorithmic improvements of XSSFRow and XSSFSheet, removed LinkedList in favor of TreeMap, that allowed O(Log(N)) performance instead of O(N) when adding new rows and cells2. Revised cell value accessors in XSSFCell. Now both HSSF and XSSF handle various cell types equally. The same exceptions are thrown in case of type mismatch, same behaviour when setting nulls, etc. 15 years ago
  Yegor Kozlov c63434df63 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 15 years ago
  Yegor Kozlov a9f18bad9d applied patch #45492 submitted by Gisella Bronzetti,also performed major cleanup of StylesTable and its components, the goal was to ensure that StylesTable works as a cache of styling components, not just a regular store of fill patterns and cell styles. 15 years ago
  Yegor Kozlov 2c8ea83f9d patch #45881 from Sourcesense: implemented cell fills and borders, added examples 15 years ago
  Yegor Kozlov eed31d47c1 1. initial support for rich text in xssf" 15 years ago
  Yegor Kozlov a9623d08af refactored cell align accessors in xssf and added samples based on the quick guide 15 years ago
  Yegor Kozlov 6d1b247b69 more ooxml progress from SourseSense developers 15 years ago
  Nick Burch 821aad8c70 As discussed on dev@poi, move XSSFRelation out to its own class 16 years ago
  Nick Burch cb6eae0b92 Merged revisions 638786-638802,638805-638811,638813-638814,638816-639230,639233-639241,639243-639253,639255-639486,639488-639601,639603-639835,639837-639917,639919-640056,640058-640710,640712-641156,641158-641184,641186-641795,641797-641798,641800-641933,641935-641963,641965-641966,641968-641995,641997-642230,642232-642562,642564-642565,642568-642570,642572-642573,642576-642736,642739-642877,642879,642881-642890,642892-642903,642905-642945,642947-643624,643626-643653,643655-643669,643671,643673-643830,643832-643833,643835-644342,644344-644472,644474-644508,644510-645347,645349-645351,645353-645559,645561-645565,645568-645951,645953-646193,646195-646311,646313-646404,646406-646665,646667-646853,646855-646869,646871-647151,647153-647185,647187-647277,647279-647566,647568-647573,647575,647578-647711,647714-647737,647739-647823,647825-648155,648157-648202,648204-648273,648275,648277-648302,648304-648333,648335-648588,648590-648622,648625-648673,648675-649141,649144,649146-649556,649558-649795,649799,649801-649910,649912-649913,649915-650128,650131-650132,650134-650137,650140-650914,650916-651991,651993-652284,652286-652287,652289,652291,652293-652297,652299-652328,652330-652425,652427-652445,652447-652560,652562-652933,652935,652937-652993,652995-653116,653118-653124,653126-653483,653487-653519,653522-653550,653552-653607,653609-653667,653669-653674,653676-653814,653817-653830,653832-653891,653893-653944,653946-654055,654057-654355,654357-654365,654367-654648,654651-655215,655217-655277,655279-655281,655283-655911,655913-656212,656214,656216-656251,656253-656698,656700-656756,656758-656892,656894-657135,657137-657165,657168-657179,657181-657354,657356-657357,657359-657701,657703-657874,657876-658032,658034-658284,658286,658288-658301,658303-658307,658309-658321,658323-658335,658337-658348,658351,658353-658832,658834-658983,658985,658987-659066,659068-659402,659404-659428,659430-659451,659453-659454,659456-659461,659463-659477,659479-659524,659526-659571,659574,659576-660255,660257-660262,660264-660279,660281-660343,660345-660473,660475-660827,660829-660833,660835-660888,660890-663321,663323-663435,663437-663764,663766-663854,663856-664219,664221-664489,664494-664514,664516-668013,668015-668142,668144-668152,668154,668156-668256,668258,668260-669139,669141-669455,669457-669657,669659-669808,669810-670189,670191-671321,671323-672229,672231-672549,672551-672552,672554-672561,672563-672566,672568,672571-673049,673051-673852,673854-673862,673864-673986,673988-673996,673998-674347,674349-674890,674892-674910,674912-674936,674938-674952,674954-675078,675080-675085,675087-675217,675219-675660,675662-675670,675672-675716,675718-675726,675728-675733,675735-675775,675777-675782,675784,675786-675791,675794-676205 via svnmerge from 16 years ago
  Paolo Mottadelli 8f63a46255 ColumnHelper get/setColDefaultStyle; XSSFSheet setDefaultColumnStyle; XSSFCellStyle constructor refactored abd getIndex method implemented; StyesTable get/setCellXf and get/setCellStyleXf. + tests 16 years ago
  Paolo Mottadelli 0bbcb8f51e Completed StylesTable initialization in order to create a new 'POIzed' file readable by Excel 16 years ago
  Paolo Mottadelli ec58464f48 XSSFCellStyle borderStyle methods -> TODO: borderColor related methods tests 16 years ago
  Paolo Mottadelli 1d68e5d71b XSSFCellAlignment get/setTextRotation + get/setWrapText + tests 16 years ago
  Paolo Mottadelli bd910bde7d XSSFCellStyle alignment methods and others + tests 16 years ago