Author: fanningpj
Date: Wed Jun  6 16:51:54 2018
New Revision: 1833060

URL: http://svn.apache.org/viewvc?rev=1833060&view=rev
Log:
[bug-62435] Rename getAllEmbedds method to getAllEmbeddedParts (getAllEmbedds 
is retained but deprecated)

Modified:
    poi/site/src/documentation/content/xdocs/spreadsheet/quick-guide.xml
    poi/site/src/documentation/content/xdocs/status.xml

Modified: poi/site/src/documentation/content/xdocs/spreadsheet/quick-guide.xml
URL: 
http://svn.apache.org/viewvc/poi/site/src/documentation/content/xdocs/spreadsheet/quick-guide.xml?rev=1833060&r1=1833059&r2=1833060&view=diff
==============================================================================
--- poi/site/src/documentation/content/xdocs/spreadsheet/quick-guide.xml 
(original)
+++ poi/site/src/documentation/content/xdocs/spreadsheet/quick-guide.xml Wed 
Jun  6 16:51:54 2018
@@ -2116,7 +2116,7 @@ the data to populate another drop down l
        <p><strong>XSSF:</strong></p>
        <source>
   XSSFWorkbook workbook = new XSSFWorkbook("excel_with_embeded.xlsx");
-  for (PackagePart pPart : workbook.getAllEmbedds()) {
+  for (PackagePart pPart : workbook.getAllEmbeddedParts()) {
       String contentType = pPart.getContentType();
       // Excel Workbook - either binary or OpenXML
       if (contentType.equals("application/vnd.ms-excel")) {

Modified: poi/site/src/documentation/content/xdocs/status.xml
URL: 
http://svn.apache.org/viewvc/poi/site/src/documentation/content/xdocs/status.xml?rev=1833060&r1=1833059&r2=1833060&view=diff
==============================================================================
--- poi/site/src/documentation/content/xdocs/status.xml (original)
+++ poi/site/src/documentation/content/xdocs/status.xml Wed Jun  6 16:51:54 2018
@@ -126,6 +126,7 @@
         <action dev="PD" type="fix" fixes-bug="61906" module="XSSF">add API 
for working with RichStringText</action>
         <action dev="PD" type="fix" fixes-bug="61792" module="SS Common">Avoid 
iterating over chars (use codepoints instead)</action>
         <action dev="PD" type="fix" fixes-bug="62254" module="SS 
Common">Update OFFSET function to support optional values</action>
+        <action dev="PD" type="update" fixes-bug="62435" module="XSSF">Rename 
getAllEmbedds method to getAllEmbeddedParts (getAllEmbedds is retained but 
deprecated)</action>
         <action dev="PD" type="fix" fixes-bug="github-90" module="XSSF">Change 
default DSIG signing algorithm to SHA256</action>
         <action dev="PD" type="fix" fixes-bug="github-107" module="SS 
Common">Support AREAS function</action>
         <action dev="PD" type="fix" fixes-bug="github-110" 
breaks-compatibility="true" module="XPWF">Renames 
org.apache.poi.xwpf.usermodel.TextSegement to 
org.apache.poi.xwpf.usermodel.TextSegment</action>



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to