On Fri, 11 Jul 2008, Josh Micich wrote:
"Type mismatch: cannot convert from Region to Region" org.apache.poi.hssf.util.Region -> org.apache.poi.ss.util.Region
These were related to hssf.util.Region going walkies. I've fixed this in svn
"The import org.apache.poi.hssf.usermodel.HSSFFormulaEvaluator.CellValue cannot be resolved" org.apache.poi.hssf.usermodel.HSSFFormulaEvaluator -> org.apache.poi.ss.usermodel.FormulaEvaluator.CellValue
Annoyingly, we can't work around this, as Java is against us. You'd think it'd be fine to import CellValue from FormulaEvaluator via HSSFFormulaEvaluator (which extends FormulaEvaluator), but Java won't let you, for reasons which escape me. This, and the other case like it are listed in the "Converting existing HSSF Usermodel code to SS Usermodel document".
(If you can think of a fix for this problem, that'd be great. However, I couldn't find one, and nor could any of the sourcesense guys, which is why we ended up having to leave it as requiring a change)
"The method getDataFormatString(Workbook) in the type HSSFCellStyle is not applicable for the arguments (Workbook)" org.apache.poi.hssf.model.Workbook -> org.apache.poi.ss.usermodel.Workbook
Fixed in svn, we'd added support for fetching from a usermodel workbook, but needlessly zapped the old model workbook support in the process.
I could do yet another build, if people think it's worth it for these fixes? Otherwise, they'll be in the next beta
Nick --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
