https://issues.apache.org/bugzilla/show_bug.cgi?id=47520
Yegor Kozlov <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #6 from Yegor Kozlov <[email protected]> 2009-07-15 22:56:04 PST --- Roberto, Thanks for the patch, I committed it with a few tweaks in r794539 ( https://svn.apache.org/viewcvs.cgi?view=rev&rev=794539 ). - The procedure of getting MapInfo can be simplified. I added XSSFWorkbook.getCustomXMLMappings() which returns a collections of XSSFMap objects. With this change your example looks much simpler: //export all xml mappings defined in this workbook XSSFWorkbook wb = ..; for (XSSFMap map : wb.getCustomXMLMappings()) { XSSFExportToXml exporter = new XSSFExportToXml(map); } - I moved XSSFXmlColumnPr and XSSFSingleXmlCell to org.apache.poi.xssf.usermodel.helpers, they are really helper wrappers around XML beans. Other than that, it is a excellent contribution. Regards, Yegor -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
