This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-imaging.git

commit 911f468567e41414564b4edda10a8b1732216234
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Jan 5 14:10:48 2026 -0500

    Javadoc
---
 .../commons/imaging/formats/webp/chunks/WebPChunkVp8.java  | 10 ++++++++++
 .../commons/imaging/formats/webp/chunks/WebPChunkVp8l.java |  8 ++++++++
 .../commons/imaging/formats/webp/chunks/WebPChunkVp8x.java | 14 ++++++++++++++
 .../commons/imaging/formats/webp/chunks/WebPChunkXml.java  |  2 ++
 4 files changed, 34 insertions(+)

diff --git 
a/src/main/java/org/apache/commons/imaging/formats/webp/chunks/WebPChunkVp8.java
 
b/src/main/java/org/apache/commons/imaging/formats/webp/chunks/WebPChunkVp8.java
index 4a5a3050..55349c05 100644
--- 
a/src/main/java/org/apache/commons/imaging/formats/webp/chunks/WebPChunkVp8.java
+++ 
b/src/main/java/org/apache/commons/imaging/formats/webp/chunks/WebPChunkVp8.java
@@ -130,6 +130,8 @@ public final class WebPChunkVp8 extends AbstractWebPChunk {
     }
 
     /**
+     * Gets the height of the image.
+     *
      * @return the height.
      */
     public int getHeight() {
@@ -137,6 +139,8 @@ public final class WebPChunkVp8 extends AbstractWebPChunk {
     }
 
     /**
+     * Gets the horizontal scale.
+     *
      * @return the horizontal scale.
      */
     public int getHorizontalScale() {
@@ -144,6 +148,8 @@ public final class WebPChunkVp8 extends AbstractWebPChunk {
     }
 
     /**
+     * Gets the version number.
+     *
      * @return the version number.
      */
     public int getVersionNumber() {
@@ -151,6 +157,8 @@ public final class WebPChunkVp8 extends AbstractWebPChunk {
     }
 
     /**
+     * Gets the vertical scale.
+     *
      * @return the vertical scale.
      */
     public int getVerticalScale() {
@@ -158,6 +166,8 @@ public final class WebPChunkVp8 extends AbstractWebPChunk {
     }
 
     /**
+     * Gets the width of the image.
+     *
      * @return the width.
      */
     public int getWidth() {
diff --git 
a/src/main/java/org/apache/commons/imaging/formats/webp/chunks/WebPChunkVp8l.java
 
b/src/main/java/org/apache/commons/imaging/formats/webp/chunks/WebPChunkVp8l.java
index 4ae1561b..fd02273a 100644
--- 
a/src/main/java/org/apache/commons/imaging/formats/webp/chunks/WebPChunkVp8l.java
+++ 
b/src/main/java/org/apache/commons/imaging/formats/webp/chunks/WebPChunkVp8l.java
@@ -85,6 +85,8 @@ public final class WebPChunkVp8l extends AbstractWebPChunk {
     }
 
     /**
+     * Gets the image height.
+     *
      * @return the image height.
      */
     public int getImageHeight() {
@@ -92,6 +94,8 @@ public final class WebPChunkVp8l extends AbstractWebPChunk {
     }
 
     /**
+     * Gets the image width.
+     *
      * @return the image width.
      */
     public int getImageWidth() {
@@ -99,6 +103,8 @@ public final class WebPChunkVp8l extends AbstractWebPChunk {
     }
 
     /**
+     * Gets the version number.
+     *
      * @return the version number.
      */
     public int getVersionNumber() {
@@ -106,6 +112,8 @@ public final class WebPChunkVp8l extends AbstractWebPChunk {
     }
 
     /**
+     * Checks whether the image has an alpha channel.
+     *
      * @return whether the image has an alpha channel or not.
      */
     public boolean hasAlpha() {
diff --git 
a/src/main/java/org/apache/commons/imaging/formats/webp/chunks/WebPChunkVp8x.java
 
b/src/main/java/org/apache/commons/imaging/formats/webp/chunks/WebPChunkVp8x.java
index 6cdb9a10..fb008d13 100644
--- 
a/src/main/java/org/apache/commons/imaging/formats/webp/chunks/WebPChunkVp8x.java
+++ 
b/src/main/java/org/apache/commons/imaging/formats/webp/chunks/WebPChunkVp8x.java
@@ -98,6 +98,8 @@ public final class WebPChunkVp8x extends AbstractWebPChunk {
     }
 
     /**
+     * Gets the canvas height.
+     *
      * @return the canvas height.
      */
     public int getCanvasHeight() {
@@ -105,6 +107,8 @@ public final class WebPChunkVp8x extends AbstractWebPChunk {
     }
 
     /**
+     * Gets the canvas width.
+     *
      * @return the canvas width.
      */
     public int getCanvasWidth() {
@@ -112,6 +116,8 @@ public final class WebPChunkVp8x extends AbstractWebPChunk {
     }
 
     /**
+     * Checks whether the chunk has alpha enabled.
+     *
      * @return whether the chunk has alpha enabled.
      */
     public boolean hasAlpha() {
@@ -119,6 +125,8 @@ public final class WebPChunkVp8x extends AbstractWebPChunk {
     }
 
     /**
+     * Checks if the chunk contains an animation.
+     *
      * @return if the chunk contains an animation.
      */
     public boolean hasAnimation() {
@@ -126,6 +134,8 @@ public final class WebPChunkVp8x extends AbstractWebPChunk {
     }
 
     /**
+     * Checks whether the chunk has EXIF data.
+     *
      * @return whether the chunk has EXIF data.
      */
     public boolean hasExif() {
@@ -133,6 +143,8 @@ public final class WebPChunkVp8x extends AbstractWebPChunk {
     }
 
     /**
+     * Checks whether the chunk has ICC enabled.
+     *
      * @return whether the chunk has ICC enabled.
      */
     public boolean hasIcc() {
@@ -140,6 +152,8 @@ public final class WebPChunkVp8x extends AbstractWebPChunk {
     }
 
     /**
+     * Checks whether the chunk has XMP.
+     *
      * @return whether the chunk has XMP.
      */
     public boolean hasXmp() {
diff --git 
a/src/main/java/org/apache/commons/imaging/formats/webp/chunks/WebPChunkXml.java
 
b/src/main/java/org/apache/commons/imaging/formats/webp/chunks/WebPChunkXml.java
index 49fbcf33..94210ee8 100644
--- 
a/src/main/java/org/apache/commons/imaging/formats/webp/chunks/WebPChunkXml.java
+++ 
b/src/main/java/org/apache/commons/imaging/formats/webp/chunks/WebPChunkXml.java
@@ -54,6 +54,8 @@ public final class WebPChunkXml extends AbstractWebPChunk {
     }
 
     /**
+     * Gets the XML content.
+     *
      * @return the XML.
      */
     public String getXml() {

Reply via email to