jferard / fastods

A very fast and lightweight (no dependency) library for creating ODS (Open Document Spreadsheet, mainly for Calc) files in Java. It's a Martin Schulz's SimpleODS fork
GNU General Public License v3.0
36 stars 6 forks source link

Add TableCellStyle.toBuilder() method #176

Closed jferard closed 4 years ago

jferard commented 4 years ago

It would ease the construction of styles. Use case: one wants to add borders to a cell. 1. create the cellStyle style ; 2.

 walker.setStyle(cellStyle.toBuilder().borderAll(...));