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:
parent
141dc22e84
commit
0092e8152d
@ -33,6 +33,7 @@
|
|||||||
|
|
||||||
<changes>
|
<changes>
|
||||||
<release version="3.5-beta7" date="2009-??-??">
|
<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="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">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>
|
<action dev="POI-DEVELOPERS" type="fix">47734 - removed unnecessary svn:executable flag from files in SVN trunk</action>
|
||||||
|
@ -42,6 +42,10 @@ public class HSSFCreationHelper implements CreationHelper {
|
|||||||
return new HSSFHyperlink(type);
|
return new HSSFHyperlink(type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public HSSFEvaluationWorkbook createEvaluationWorkbook() {
|
||||||
|
return HSSFEvaluationWorkbook.create(workbook);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a HSSFFormulaEvaluator, the object that evaluates formula cells.
|
* Creates a HSSFFormulaEvaluator, the object that evaluates formula cells.
|
||||||
*
|
*
|
||||||
|
@ -16,6 +16,8 @@
|
|||||||
==================================================================== */
|
==================================================================== */
|
||||||
package org.apache.poi.ss.usermodel;
|
package org.apache.poi.ss.usermodel;
|
||||||
|
|
||||||
|
import org.apache.poi.ss.formula.EvaluationWorkbook;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An object that handles instantiating concrete
|
* An object that handles instantiating concrete
|
||||||
* classes of the various instances one needs for
|
* 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
|
* a given interface, without you having to worry
|
||||||
* about if you're dealing with HSSF or XSSF, despite
|
* about if you're dealing with HSSF or XSSF, despite
|
||||||
* Java being quite rubbish.
|
* Java being quite rubbish.
|
||||||
|
*
|
||||||
|
* Modified 09/07/09 by Petr Udalau - added method createEvaluationWorkbook().
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
public interface CreationHelper {
|
public interface CreationHelper {
|
||||||
/**
|
/**
|
||||||
@ -45,6 +50,13 @@ public interface CreationHelper {
|
|||||||
*/
|
*/
|
||||||
Hyperlink createHyperlink(int type);
|
Hyperlink createHyperlink(int type);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates EvaluationWorkbook.
|
||||||
|
*
|
||||||
|
* @return a EvaluationWorkbook instance
|
||||||
|
*/
|
||||||
|
EvaluationWorkbook createEvaluationWorkbook();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates FormulaEvaluator - an object that evaluates formula cells.
|
* Creates FormulaEvaluator - an object that evaluates formula cells.
|
||||||
*
|
*
|
||||||
|
@ -42,6 +42,10 @@ public class XSSFCreationHelper implements CreationHelper {
|
|||||||
return new XSSFHyperlink(type);
|
return new XSSFHyperlink(type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public XSSFEvaluationWorkbook createEvaluationWorkbook() {
|
||||||
|
return XSSFEvaluationWorkbook.create(workbook);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a XSSFFormulaEvaluator, the object that evaluates formula cells.
|
* Creates a XSSFFormulaEvaluator, the object that evaluates formula cells.
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user