(OutputStream output, String text)
| 1588 | |
| 1589 | |
| 1590 | void saveNumberODS(OutputStream output, String text) throws IOException { |
| 1591 | writeUTF(output, |
| 1592 | " <table:table-cell office:value-type=\"float\" office:value=\"" + text + "\">", |
| 1593 | " <text:p>" + text + "</text:p>", |
| 1594 | " </table:table-cell>"); |
| 1595 | } |
| 1596 | |
| 1597 | |
| 1598 | static Charset utf8; |