From commits-return-11867-archive-asf-public=cust-asf.ponee.io@poi.apache.org Tue Dec 4 00:51:22 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 7895C1807AC for ; Tue, 4 Dec 2018 00:51:20 +0100 (CET) Received: (qmail 74623 invoked by uid 500); 3 Dec 2018 23:51:19 -0000 Mailing-List: contact commits-help@poi.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@poi.apache.org Delivered-To: mailing list commits@poi.apache.org Received: (qmail 74402 invoked by uid 99); 3 Dec 2018 23:51:19 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Dec 2018 23:51:19 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id EC9533A2714 for ; Mon, 3 Dec 2018 23:51:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1848113 [13/13] - in /poi/site/publish: ./ apidocs/4.0/ apidocs/4.0/org/apache/poi/ apidocs/4.0/org/apache/poi/common/usermodel/fonts/ apidocs/4.0/org/apache/poi/extractor/ apidocs/4.0/org/apache/poi/hpsf/ apidocs/4.0/org/apache/poi/hpsf/c... Date: Mon, 03 Dec 2018 23:51:14 -0000 To: commits@poi.apache.org From: kiwiwings@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20181203235117.EC9533A2714@svn01-us-west.apache.org> Modified: poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/BaseXSSFEvaluationWorkbook.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/BaseXSSFEvaluationWorkbook.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/BaseXSSFEvaluationWorkbook.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/BaseXSSFEvaluationWorkbook.html Mon Dec 3 23:51:13 2018 @@ -133,6 +133,36 @@ + + + + + + + + + + + + + + + + + + + + +
Methods in org.apache.poi.xssf.usermodel with parameters of type BaseXSSFEvaluationWorkbook 
Modifier and TypeMethod and Description
protected java.lang.StringXSSFCell.getCellFormula(BaseXSSFEvaluationWorkbook fpb) +
package/hierarchy use only - reuse an existing evaluation workbook if available for caching
+
protected voidXSSFSheet.onDeleteFormula(XSSFCell cell, + BaseXSSFEvaluationWorkbook evalWb) +
when a cell with a 'master' shared formula is removed, the next cell in the range becomes the master
+
protected voidXSSFCell.setCellType(CellType cellType, + BaseXSSFEvaluationWorkbook evalWb) +
Needed by bug #62834, which points out getCellFormula() expects an evaluation context or creates a new one, + so if there is one in use, it needs to be carried on through.
+
Modified: poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/XSSFCell.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/XSSFCell.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/XSSFCell.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/XSSFCell.html Mon Dec 3 23:51:13 2018 @@ -165,15 +165,16 @@ protected void -XSSFSheet.onDeleteFormula(XSSFCell cell) -
when a cell with a 'master' shared formula is removed, the next cell in the range becomes the master
+XSSFWorkbook.onDeleteFormula(XSSFCell cell) +
Fired when a formula is deleted from this workbook, + for example when calling cell.setCellFormula(null)
protected void -XSSFWorkbook.onDeleteFormula(XSSFCell cell) -
Fired when a formula is deleted from this workbook, - for example when calling cell.setCellFormula(null)
+XSSFSheet.onDeleteFormula(XSSFCell cell, + BaseXSSFEvaluationWorkbook evalWb) +
when a cell with a 'master' shared formula is removed, the next cell in the range becomes the master
Modified: poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/XSSFChart.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/XSSFChart.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/XSSFChart.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/XSSFChart.html Mon Dec 3 23:51:13 2018 @@ -123,6 +123,12 @@
Deprecated. 
+ +XSSFChart +XSSFDrawing.importChart(XSSFChart srcChart) +
Imports the chart from the srcChart into this drawing.
+ + @@ -148,6 +154,12 @@ + + + +
XSSFChartXSSFDrawing.importChart(XSSFChart srcChart) +
Imports the chart from the srcChart into this drawing.
+
protected void XSSFGraphicFrame.setChart(XSSFChart chart, java.lang.String relId) Modified: poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/XSSFEvaluationWorkbook.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/XSSFEvaluationWorkbook.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/XSSFEvaluationWorkbook.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/XSSFEvaluationWorkbook.html Mon Dec 3 23:51:13 2018 @@ -107,21 +107,6 @@
- - - - - - - - - - - - -
Methods in org.apache.poi.xssf.usermodel with parameters of type XSSFEvaluationWorkbook 
Modifier and TypeMethod and Description
protected java.lang.StringXSSFCell.getCellFormula(XSSFEvaluationWorkbook fpb) -
package/hierarchy use only - reuse an existing evaluation workbook if available for caching
-
Modified: poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/XSSFRichTextString.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/XSSFRichTextString.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/XSSFRichTextString.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/XSSFRichTextString.html Mon Dec 3 23:51:13 2018 @@ -141,14 +141,6 @@ XSSFRichTextString -XSSFChart.getTitle() -
Deprecated.  -
POI 3.16, use XSSFChart.getTitleText() instead.
-
- - - -XSSFRichTextString XSSFChart.getTitleText()
Returns the title static text, or null if none is set.
Modified: poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/XSSFWorkbook.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/XSSFWorkbook.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/XSSFWorkbook.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/class-use/XSSFWorkbook.html Mon Dec 3 23:51:13 2018 @@ -284,30 +284,36 @@ static XSSFWorkbook +XSSFWorkbookFactory.createWorkbook() +
Create a new empty Workbook
+ + + +static XSSFWorkbook XSSFWorkbookFactory.createWorkbook(java.io.File file, boolean readOnly)
Creates the XSSFWorkbook from the given File, which must exist and be readable.
- + static XSSFWorkbook XSSFWorkbookFactory.createWorkbook(java.io.InputStream stream)
Creates a XSSFWorkbook from the given InputStream
- + static XSSFWorkbook XSSFWorkbookFactory.createWorkbook(OPCPackage pkg)
Creates a XSSFWorkbook from the given OOXML Package
- + static XSSFWorkbook XSSFWorkbookFactory.createWorkbook(ZipPackage pkg)
Creates a XSSFWorkbook from the given OOXML Package
- + XSSFWorkbook XSSFSheet.getWorkbook()
Returns the parent XSSFWorkbook
Modified: poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/helpers/XSSFFormulaUtils.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/helpers/XSSFFormulaUtils.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/helpers/XSSFFormulaUtils.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/xssf/usermodel/helpers/XSSFFormulaUtils.html Mon Dec 3 23:51:13 2018 @@ -155,7 +155,7 @@ extends java.lang.Object updateSheetName(int sheetIndex, java.lang.String oldName, java.lang.String newName) -
Update sheet name in all formulas and named ranges.
+
Update sheet name in all charts, formulas and named ranges.
@@ -206,7 +206,7 @@ extends java.lang.Object
public void updateSheetName(int sheetIndex,
                             java.lang.String oldName,
                             java.lang.String newName)
-
Update sheet name in all formulas and named ranges. +
Update sheet name in all charts, formulas and named ranges. Called from XSSFWorkbook.setSheetName(int, String)

Modified: poi/site/publish/apidocs/4.0/org/apache/poi/xwpf/usermodel/XWPFChart.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/xwpf/usermodel/XWPFChart.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/xwpf/usermodel/XWPFChart.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/xwpf/usermodel/XWPFChart.html Mon Dec 3 23:51:13 2018 @@ -346,7 +346,7 @@ extends XDDFChart -commit, createCategoryAxis, createData, createDateAxis, createRelationshipInChart, createValueAxis, deleteLegend, deleteShapeProperties, fillSheet, findDefinedParagraphProperty, findDefinedRunProperty, formatRange, getAxes, getChartIndex, getChartSeries, getCTChart, getCTChartSpace, getCTPlotArea, getFormattedTitle, getOrAddLegend, getOrAddManualLayout, getOrAddShapeProperties, getWorkbook, importContent, isPlotOnlyVisibleCells, plot, saveWorkbook, setAutoTitleDeleted, setBackWall, setChartIndex, setExternalId, setFloor, setPlotOnlyVisibleCells, setSheetTitle, setSideWall, setValueRange, setWorkbook +commit, createCategoryAxis, createData, createDateAxis, createRelationshipInChart, createValueAxis, deleteLegend, deleteShapeProperties, displayBlanksAs, fillSheet, findDefinedParagraphProperty, findDefinedRunProperty, formatRange, getAxes, getChartIndex, getChartSeries, getCTChart, getCTChartSpace, getCTPlotArea, getFor mattedTitle, getOrAddLegend, getOrAddManualLayout, getOrAddShapeProperties, getTitle, getTitleOverlay, getWorkbook, importContent, isPlotOnlyVisibleCells, plot, saveWorkbook, setAutoTitleDeleted, setBackWall, setChartIndex, setExternalId, setFloor, setPlotOnlyVi sibleCells, setSheetTitle, setSideWall, setTitleOverlay, setTitleText, setValueRange, setWorkbook

@@ -1421,7 +1421,7 @@ public void addNewRowBetween(i of a point) and a maximum value of 96 (twelve points). Any values outside this range may be reassigned to a more appropriate value.
space - - Specifies the spacing offset that shall be used to place this border on the table
-
rgbColor - - This color may either be presented as a hex value (in RRGGBB format), +
rgbColor - - This color may either be presented as a hex value (in RRGGBB format), or auto to allow a consumer to automatically determine the border color as appropriate.
@@ -1445,7 +1445,7 @@ public void addNewRowBetween(i of a point) and a maximum value of 96 (twelve points). Any values outside this range may be reassigned to a more appropriate value.
space - - Specifies the spacing offset that shall be used to place this border on the table
-
rgbColor - - This color may either be presented as a hex value (in RRGGBB format), +
rgbColor - - This color may either be presented as a hex value (in RRGGBB format), or auto to allow a consumer to automatically determine the border color as appropriate.
@@ -1469,7 +1469,7 @@ public void addNewRowBetween(i of a point) and a maximum value of 96 (twelve points). Any values outside this range may be reassigned to a more appropriate value.
space - - Specifies the spacing offset that shall be used to place this border on the table
-
rgbColor - - This color may either be presented as a hex value (in RRGGBB format), +
rgbColor - - This color may either be presented as a hex value (in RRGGBB format), or auto to allow a consumer to automatically determine the border color as appropriate.
@@ -1493,7 +1493,7 @@ public void addNewRowBetween(i of a point) and a maximum value of 96 (twelve points). Any values outside this range may be reassigned to a more appropriate value.
space - - Specifies the spacing offset that shall be used to place this border on the table
-
rgbColor - - This color may either be presented as a hex value (in RRGGBB format), +
rgbColor - - This color may either be presented as a hex value (in RRGGBB format), or auto to allow a consumer to automatically determine the border color as appropriate.
@@ -1517,7 +1517,7 @@ public void addNewRowBetween(i of a point) and a maximum value of 96 (twelve points). Any values outside this range may be reassigned to a more appropriate value.
space - - Specifies the spacing offset that shall be used to place this border on the table
-
rgbColor - - This color may either be presented as a hex value (in RRGGBB format), +
rgbColor - - This color may either be presented as a hex value (in RRGGBB format), or auto to allow a consumer to automatically determine the border color as appropriate.
@@ -1541,7 +1541,7 @@ public void addNewRowBetween(i of a point) and a maximum value of 96 (twelve points). Any values outside this range may be reassigned to a more appropriate value.
space - - Specifies the spacing offset that shall be used to place this border on the table
-
rgbColor - - This color may either be presented as a hex value (in RRGGBB format), +
rgbColor - - This color may either be presented as a hex value (in RRGGBB format), or auto to allow a consumer to automatically determine the border color as appropriate.
Modified: poi/site/publish/apidocs/4.0/overview-tree.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/overview-tree.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/overview-tree.html (original) +++ poi/site/publish/apidocs/4.0/overview-tree.html Mon Dec 3 23:51:13 2018 @@ -905,6 +905,7 @@
  • org.apache.poi.ss.formula.eval.ConcatEval
  • org.apache.poi.ss.formula.functions.Countif
  • org.apache.poi.ss.formula.functions.Delta (implements org.apache.poi.ss.formula.functions.FreeRefFunction)
  • +
  • org.apache.poi.ss.formula.functions.Frequency
  • org.apache.poi.ss.formula.functions.Intercept
  • org.apache.poi.ss.formula.eval.IntersectionEval
  • org.apache.poi.ss.formula.functions.LinearRegressionFunction
  • @@ -1001,7 +1002,6 @@
  • org.apache.poi.hssf.usermodel.EscherGraphics
  • java.awt.Graphics2D
  • +
  • org.apache.poi.ss.formula.functions.Trend (implements org.apache.poi.ss.formula.functions.Function)
  • org.apache.poi.poifs.crypt.dsig.services.TSPTimeStampService (implements org.apache.poi.poifs.crypt.dsig.services.TimeStampService)
  • org.apache.poi.hpsf.TypedPropertyValue
  • org.apache.poi.hsmf.datatypes.Types
  • @@ -2840,6 +2842,7 @@
  • org.apache.poi.xddf.usermodel.text.XDDFTextParagraph
  • org.apache.poi.xddf.usermodel.text.XDDFTextRun
  • org.apache.poi.xddf.usermodel.XDDFTileInfoProperties
  • +
  • org.apache.poi.xddf.usermodel.chart.XDDFTitle
  • org.apache.poi.xddf.usermodel.XDDFTransform2D
  • org.apache.poi.xdgf.usermodel.XDGFCell
  • org.apache.poi.xdgf.usermodel.XDGFConnection
  • @@ -3835,6 +3838,7 @@
  • org.apache.poi.xddf.usermodel.chart.AxisLabelAlignment
  • org.apache.poi.xddf.usermodel.chart.ChartTypes
  • org.apache.poi.xddf.usermodel.chart.BarDirection
  • +
  • org.apache.poi.xddf.usermodel.chart.DisplayBlanks
  • org.apache.poi.xddf.usermodel.chart.LayoutTarget
  • org.apache.poi.xddf.usermodel.chart.LayoutMode
  • org.apache.poi.xddf.usermodel.chart.AxisOrientation
  • Modified: poi/site/publish/download.html URL: http://svn.apache.org/viewvc/poi/site/publish/download.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/download.html (original) +++ poi/site/publish/download.html Mon Dec 3 23:51:13 2018 @@ -184,7 +184,7 @@ document.write("Last Published: " + docu
    • -The latest stable release is Apache POI 4.0.0 +The latest stable release is Apache POI 4.0.1
    • Modified: poi/site/publish/index.html URL: http://svn.apache.org/viewvc/poi/site/publish/index.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/index.html (original) +++ poi/site/publish/index.html Mon Dec 3 23:51:13 2018 @@ -187,7 +187,7 @@ document.write("Last Published: " + docu Release Notes. A full list of changes is available in the change log. People interested should also follow the dev list to track progress.

      -

      See the downloads page for more details.

      +

      See the downloads page for more details.

      POI 4.0.1 is the first release to require Java 8 or newer.

      23 October 2018 - XMLBeans 3.0.2 available

      --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org For additional commands, e-mail: commits-help@poi.apache.org