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-bcel.git
commit d9868aa0cce9a69989d0f38f77eba1e68d5eb0eb Author: Gary Gregory <[email protected]> AuthorDate: Sat Feb 14 08:59:57 2026 -0500 Javadoc --- .../org/apache/bcel/verifier/VerificationResult.java | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/bcel/verifier/VerificationResult.java b/src/main/java/org/apache/bcel/verifier/VerificationResult.java index 17a58cef..557ed8b2 100644 --- a/src/main/java/org/apache/bcel/verifier/VerificationResult.java +++ b/src/main/java/org/apache/bcel/verifier/VerificationResult.java @@ -59,7 +59,12 @@ public class VerificationResult { /** The detailed message. */ private final String detailMessage; - /** The usual constructor. */ + /** + * The usual constructor. + * + * @param status the verification status. + * @param message the detail message. + */ public VerificationResult(final int status, final String message) { numeric = status; detailMessage = message; @@ -67,6 +72,9 @@ public class VerificationResult { /** * Returns if two VerificationResult instances are equal. + * + * @param o the object to compare. + * @return true if equal. */ @Override public boolean equals(final Object o) { @@ -77,13 +85,19 @@ public class VerificationResult { return other.numeric == this.numeric && other.detailMessage.equals(this.detailMessage); } - /** Returns a detailed message. */ + /** + * Returns a detailed message. + * + * @return the detail message. + */ public String getMessage() { return detailMessage; } /** * Returns one of the {@link #VERIFIED_OK}, {@link #VERIFIED_NOTYET}, {@link #VERIFIED_REJECTED} constants. + * + * @return the verification status. */ public int getStatus() { return numeric;
