]> source.dussan.org Git - poi.git/commitdiff
javadoc typo
authorPJ Fanning <fanningpj@apache.org>
Tue, 9 Nov 2021 10:16:58 +0000 (10:16 +0000)
committerPJ Fanning <fanningpj@apache.org>
Tue, 9 Nov 2021 10:16:58 +0000 (10:16 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894858 13f79535-47bb-0310-9956-ffa450edef68

poi-scratchpad/src/main/java/org/apache/poi/hslf/blip/Bitmap.java
poi-scratchpad/src/main/java/org/apache/poi/hslf/blip/DIB.java
poi-scratchpad/src/main/java/org/apache/poi/hslf/blip/EMF.java
poi-scratchpad/src/main/java/org/apache/poi/hslf/blip/JPEG.java
poi-scratchpad/src/main/java/org/apache/poi/hslf/blip/PICT.java
poi-scratchpad/src/main/java/org/apache/poi/hslf/blip/PNG.java
poi-scratchpad/src/main/java/org/apache/poi/hslf/blip/WMF.java
poi-scratchpad/src/main/java/org/apache/poi/hslf/usermodel/HSLFPictureData.java

index bb5904da5523b110ab9a8c7758b06a1d480da4c1..adb7fc1982ff2792630399522403454fd3e2ab5a 100644 (file)
@@ -40,7 +40,7 @@ import org.apache.poi.util.Units;
 public abstract class Bitmap extends HSLFPictureData {
 
     /**
-     * @deprecated Use {@link HSLFSlideShow#addPicture(byte[], PictureType)} or one of it's overloads to create new
+     * @deprecated Use {@link HSLFSlideShow#addPicture(byte[], PictureType)} or one of its overloads to create new
      *             {@link Bitmap}. This API led to detached {@link Bitmap} instances (See Bugzilla
      *             46122) and prevented adding additional functionality.
      */
index 7fb2513fc3eead17061abb244422b2853325d178..19e35497f58b9103ea762c1f80423f066b7764f2 100644 (file)
@@ -37,7 +37,7 @@ public final class DIB extends Bitmap {
     private static final int HEADER_SIZE = 14;
 
     /**
-     * @deprecated Use {@link HSLFSlideShow#addPicture(byte[], PictureType)} or one of it's overloads to create new
+     * @deprecated Use {@link HSLFSlideShow#addPicture(byte[], PictureType)} or one of its overloads to create new
      *             {@link DIB}. This API led to detached {@link DIB} instances (See Bugzilla
      *             46122) and prevented adding additional functionality.
      */
index ec8d2b2fec79cb141dfb8ff00dff4260e980ed7d..0f95a2f2ad4b20cd3c82a6f540f5247f9b4620de 100644 (file)
@@ -40,7 +40,7 @@ import org.apache.poi.util.Units;
 public final class EMF extends Metafile {
 
     /**
-     * @deprecated Use {@link HSLFSlideShow#addPicture(byte[], PictureType)} or one of it's overloads to create new
+     * @deprecated Use {@link HSLFSlideShow#addPicture(byte[], PictureType)} or one of its overloads to create new
      *             EMF. This API led to detached EMF instances (See Bugzilla
      *             46122) and prevented adding additional functionality.
      */
index cf90746d6b795ed0a71548933c18742fb0b32476..236e895a2d610236ea6bcab9503d2c7226e5b227 100644 (file)
@@ -34,7 +34,7 @@ public final class JPEG extends Bitmap {
     private ColorSpace colorSpace = ColorSpace.rgb;
 
     /**
-     * @deprecated Use {@link HSLFSlideShow#addPicture(byte[], PictureType)} or one of it's overloads to create new
+     * @deprecated Use {@link HSLFSlideShow#addPicture(byte[], PictureType)} or one of its overloads to create new
      *             {@link JPEG}. This API led to detached {@link JPEG} instances (See Bugzilla
      *             46122) and prevented adding additional functionality.
      */
index 5bed94a34db1d17281dbcd9813493f5630e656e2..864bce2b2cd410a006f796fc976453a31444085b 100644 (file)
@@ -45,7 +45,7 @@ public final class PICT extends Metafile {
     private static final Logger LOG = LogManager.getLogger(PICT.class);
 
     /**
-     * @deprecated Use {@link HSLFSlideShow#addPicture(byte[], PictureType)} or one of it's overloads to create new
+     * @deprecated Use {@link HSLFSlideShow#addPicture(byte[], PictureType)} or one of its overloads to create new
      *             PICT. This API led to detached PICT instances (See Bugzilla
      *             46122) and prevented adding additional functionality.
      */
index 197cb3d828d36156825a92edaee986ae7b86d08b..43aebabeaccadb4697ca5659a17ba8413ad8de0e 100644 (file)
@@ -30,7 +30,7 @@ import org.apache.poi.util.Removal;
 public final class PNG extends Bitmap {
 
     /**
-     * @deprecated Use {@link HSLFSlideShow#addPicture(byte[], PictureType)} or one of it's overloads to create new
+     * @deprecated Use {@link HSLFSlideShow#addPicture(byte[], PictureType)} or one of its overloads to create new
      *             {@link PNG}. This API led to detached {@link PNG} instances (See Bugzilla
      *             46122) and prevented adding additional functionality.
      */
index 6a039510c63b07af3f6a197f599e1d04357195ac..dbd66b1f65c8b3d04561eba27957b5eac94178f5 100644 (file)
@@ -40,7 +40,7 @@ import org.apache.poi.util.Units;
 public final class WMF extends Metafile {
 
     /**
-     * @deprecated Use {@link HSLFSlideShow#addPicture(byte[], PictureType)} or one of it's overloads to create new
+     * @deprecated Use {@link HSLFSlideShow#addPicture(byte[], PictureType)} or one of its overloads to create new
      *             WMF. This API led to detached WMF instances (See Bugzilla
      *             46122) and prevented adding additional functionality.
      */
index 7f9b54eb09efe2cf3dab94b4bdf5b179e3b8ae44..2c01492beabb5bba0bf0e2fa07fc9942b28091f6 100644 (file)
@@ -110,7 +110,7 @@ public abstract class HSLFPictureData implements PictureData, GenericRecord {
     final EscherBSERecord bse;
 
     /**
-     * @deprecated Use {@link HSLFSlideShow#addPicture(byte[], PictureType)} or one of it's overloads to create new
+     * @deprecated Use {@link HSLFSlideShow#addPicture(byte[], PictureType)} or one of its overloads to create new
      *             {@link HSLFPictureData}. This API led to detached {@link HSLFPictureData} instances (See Bugzilla
      *             46122) and prevented adding additional functionality.
      */
@@ -252,7 +252,7 @@ public abstract class HSLFPictureData implements PictureData, GenericRecord {
      *
      * @param type type of picture.
      * @return concrete instance of {@link HSLFPictureData}.
-     * @deprecated Use {@link HSLFSlideShow#addPicture(byte[], PictureType)} or one of it's overloads to create new
+     * @deprecated Use {@link HSLFSlideShow#addPicture(byte[], PictureType)} or one of its overloads to create new
      *             {@link HSLFPictureData}. This API led to detached {@link HSLFPictureData} instances (See Bugzilla
      *             46122) and prevented adding additional functionality.
      */