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

Accept an external external implementation of a TableCell #181

Closed jferard closed 4 years ago

jferard commented 4 years ago

See #169 for the idea. Should work like this:

walker.set(new TableCellImpl() { ... })
jferard commented 4 years ago

See example4 in https://github.com/jferard/fastods/blob/master/fastods-examples/src/main/java/com/github/jferard/fastods/examples/J_Misc.java or https://github.com/jferard/fastods/wiki/Tutorial#a-custom-cell-experimented-users-only.

@GregorySokoloff: now you can use your own implementation of TableCell. If you need specific namespaces, you'll have to wait until #182 is fixed.