]> source.dussan.org Git - poi.git/commitdiff
Javadoc fixes
authorAndreas Beeker <kiwiwings@apache.org>
Mon, 3 Aug 2015 23:30:13 +0000 (23:30 +0000)
committerAndreas Beeker <kiwiwings@apache.org>
Mon, 3 Aug 2015 23:30:13 +0000 (23:30 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1693983 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/xslf/usermodel/XMLSlideShow.java
src/scratchpad/src/org/apache/poi/hslf/model/OLEShape.java
src/scratchpad/src/org/apache/poi/hslf/usermodel/HSLFPictureShape.java

index ecfa5cd62596a0b26a2b6eeacdcfabf47a9f836b..453c1b1e28ee48edba10a1c3318a40c40ba41e2d 100644 (file)
@@ -437,13 +437,7 @@ public class XMLSlideShow extends POIXMLDocument implements SlideShow {
      * @param pictureData       The bytes of the picture
      * @param format            The format of the picture.
      *
-     * @return the index to this picture (1 based).
-     * @see XSLFPictureData#PICTURE_TYPE_EMF
-     * @see XSLFPictureData#PICTURE_TYPE_WMF
-     * @see XSLFPictureData#PICTURE_TYPE_PICT
-     * @see XSLFPictureData#PICTURE_TYPE_JPEG
-     * @see XSLFPictureData#PICTURE_TYPE_PNG
-     * @see XSLFPictureData#PICTURE_TYPE_DIB
+     * @return the picture data
      */
     public XSLFPictureData addPicture(byte[] pictureData, PictureType format) {
         XSLFPictureData img = findPictureData(pictureData);
index 3e3436eb87c80e13781c3b3e0a5dbfd9c4aad3a9..6f8792df26eb27edd50a08ee95b5ef5f5150676f 100644 (file)
@@ -48,7 +48,7 @@ public final class OLEShape extends HSLFPictureShape {
     /**
      * Create a new <code>OLEShape</code>
      *
-     * @param idx the index of the picture
+     * @param data the picture data
      * @param parent the parent shape
      */
     public OLEShape(HSLFPictureData data, ShapeContainer<HSLFShape> parent) {
index 807af0d5f160c18e6f6f07728ef69deb70c8c0d0..10e9555c8c6b1978211b26090909dda7f1ebfe69 100644 (file)
@@ -54,7 +54,7 @@ public class HSLFPictureShape extends HSLFSimpleShape implements PictureShape {
     /**
      * Create a new <code>Picture</code>
      *
-    * @param idx the index of the picture
+    * @param data the picture data
      */
     public HSLFPictureShape(HSLFPictureData data){
         this(data, null);
@@ -63,7 +63,7 @@ public class HSLFPictureShape extends HSLFSimpleShape implements PictureShape {
     /**
      * Create a new <code>Picture</code>
      *
-     * @param idx the index of the picture
+     * @param data the picture data
      * @param parent the parent shape
      */
     public HSLFPictureShape(HSLFPictureData data, ShapeContainer<HSLFShape> parent) {