<changes>
<release version="3.5-beta7" date="2009-??-??">
+ <action dev="POI-DEVELOPERS" type="add">47848 - Added method createEvaluationWorkbook() to CreationHelper</action>
<action dev="POI-DEVELOPERS" type="add">47809 - Improved work with user-defined functions</action>
<action dev="POI-DEVELOPERS" type="fix">47581 - fixed XSSFSheet.setColumnWidth to produce XML compatible with Mac Excel 2008</action>
<action dev="POI-DEVELOPERS" type="fix">47734 - removed unnecessary svn:executable flag from files in SVN trunk</action>
return new HSSFHyperlink(type);
}
+ public HSSFEvaluationWorkbook createEvaluationWorkbook() {
+ return HSSFEvaluationWorkbook.create(workbook);
+ }
+
/**
* Creates a HSSFFormulaEvaluator, the object that evaluates formula cells.
*
==================================================================== */
package org.apache.poi.ss.usermodel;
+import org.apache.poi.ss.formula.EvaluationWorkbook;
+
/**
* An object that handles instantiating concrete
* classes of the various instances one needs for
* a given interface, without you having to worry
* about if you're dealing with HSSF or XSSF, despite
* Java being quite rubbish.
+ *
+ * Modified 09/07/09 by Petr Udalau - added method createEvaluationWorkbook().
+ *
*/
public interface CreationHelper {
/**
*/
Hyperlink createHyperlink(int type);
+ /**
+ * Creates EvaluationWorkbook.
+ *
+ * @return a EvaluationWorkbook instance
+ */
+ EvaluationWorkbook createEvaluationWorkbook();
+
/**
* Creates FormulaEvaluator - an object that evaluates formula cells.
*
return new XSSFHyperlink(type);
}
+ public XSSFEvaluationWorkbook createEvaluationWorkbook() {
+ return XSSFEvaluationWorkbook.create(workbook);
+ }
+
/**
* Creates a XSSFFormulaEvaluator, the object that evaluates formula cells.
*