Javadoc fixes

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1693983 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andreas Beeker 2015-08-03 23:30:13 +00:00
parent 5a4575bb8c
commit 0a42120b89
3 changed files with 4 additions and 10 deletions

View 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);

View 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) {

View 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) {