Added method createEvaluationWorkbook() to CreationHelper, see Bugzilla 47848

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@815935 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yegor Kozlov 2009-09-16 19:29:42 +00:00
parent 141dc22e84
commit 0092e8152d
4 changed files with 21 additions and 0 deletions

View File

@ -33,6 +33,7 @@
<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>

View File

@ -42,6 +42,10 @@ public class HSSFCreationHelper implements CreationHelper {
return new HSSFHyperlink(type);
}
public HSSFEvaluationWorkbook createEvaluationWorkbook() {
return HSSFEvaluationWorkbook.create(workbook);
}
/**
* Creates a HSSFFormulaEvaluator, the object that evaluates formula cells.
*

View File

@ -16,6 +16,8 @@
==================================================================== */
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
@ -27,6 +29,9 @@ package org.apache.poi.ss.usermodel;
* 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 {
/**
@ -45,6 +50,13 @@ public interface CreationHelper {
*/
Hyperlink createHyperlink(int type);
/**
* Creates EvaluationWorkbook.
*
* @return a EvaluationWorkbook instance
*/
EvaluationWorkbook createEvaluationWorkbook();
/**
* Creates FormulaEvaluator - an object that evaluates formula cells.
*

View File

@ -42,6 +42,10 @@ public class XSSFCreationHelper implements CreationHelper {
return new XSSFHyperlink(type);
}
public XSSFEvaluationWorkbook createEvaluationWorkbook() {
return XSSFEvaluationWorkbook.create(workbook);
}
/**
* Creates a XSSFFormulaEvaluator, the object that evaluates formula cells.
*