Author: kiwiwings
Date: Fri Dec 28 23:42:44 2018
New Revision: 1849896
URL: http://svn.apache.org/viewvc?rev=1849896&view=rev
Log:
Fix Javadocs
Modified:
poi/trunk/src/ooxml/java/org/apache/poi/xslf/usermodel/XSLFObjectData.java
Modified:
poi/trunk/src/ooxml/java/org/apache/poi/xslf/usermodel/XSLFObjectData.java
URL:
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xslf/usermodel/XSLFObjectData.java?rev=1849896&r1=1849895&r2=1849896&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xslf/usermodel/XSLFObjectData.java
(original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xslf/usermodel/XSLFObjectData.java
Fri Dec 28 23:42:44 2018
@@ -31,18 +31,19 @@ import org.apache.poi.util.Beta;
/**
* An XSLFOleData instance holds the ole binary stream/object
*/
+@SuppressWarnings("unused")
@Beta
public final class XSLFObjectData extends POIXMLDocumentPart implements
ObjectData {
/**
- * Create a new XSLFOleData node
+ * Create a new XSLFObjectData node
*/
- protected XSLFObjectData() {
+ /* package */ XSLFObjectData() {
super();
}
/**
- * Construct XSLFOleData from a package part
+ * Construct XSLFObjectData from a package part
*
* @param part the package part holding the ole data
*
@@ -58,14 +59,14 @@ public final class XSLFObjectData extend
}
@Override
- public OutputStream getOutputStream() throws IOException {
+ public OutputStream getOutputStream() {
final PackagePart pp = getPackagePart();
pp.clear();
return pp.getOutputStream();
}
/**
- * *PictureData objects store the actual content in the part directly
without keeping a
+ * XSLFObjectData objects store the actual content in the part directly
without keeping a
* copy like all others therefore we need to handle them differently.
*/
@Override
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]