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 e70c0f5026f987a5f8070e42d32f414868f40b69
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Feb 14 08:59:58 2026 -0500

    Javadoc
---
 src/main/java/org/apache/bcel/verifier/VerifierFactory.java | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/main/java/org/apache/bcel/verifier/VerifierFactory.java 
b/src/main/java/org/apache/bcel/verifier/VerifierFactory.java
index 15a72c0e..9326d92e 100644
--- a/src/main/java/org/apache/bcel/verifier/VerifierFactory.java
+++ b/src/main/java/org/apache/bcel/verifier/VerifierFactory.java
@@ -44,6 +44,8 @@ public class VerifierFactory {
 
     /**
      * Adds the VerifierFactoryObserver o to the list of observers.
+     *
+     * @param o the observer to add.
      */
     public static void attach(final VerifierFactoryObserver o) {
         OBSVERVERS.add(o);
@@ -61,6 +63,8 @@ public class VerifierFactory {
 
     /**
      * Removes the VerifierFactoryObserver o from the list of observers.
+     *
+     * @param o the observer to remove.
      */
     public static void detach(final VerifierFactoryObserver o) {
         OBSVERVERS.remove(o);
@@ -70,6 +74,7 @@ public class VerifierFactory {
      * Returns the (only) verifier responsible for the class with the given 
name. Possibly a new Verifier object is
      * transparently created.
      *
+     * @param fullyQualifiedClassName the fully qualified class name.
      * @return the (only) verifier responsible for the class with the given 
name.
      */
     public static Verifier getVerifier(final String fullyQualifiedClassName) {
@@ -83,6 +88,8 @@ public class VerifierFactory {
     /**
      * Returns all Verifier instances created so far. This is useful when a 
Verifier recursively lets the VerifierFactory
      * create other Verifier instances and if you want to verify the 
transitive hull of referenced class files.
+     *
+     * @return array of all Verifier instances.
      */
     public static Verifier[] getVerifiers() {
         return MAP.values().toArray(Verifier.EMPTY_ARRAY);

Reply via email to