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


The following commit(s) were added to refs/heads/master by this push:
     new 83b9e80b Javadoc
83b9e80b is described below

commit 83b9e80ba6c0b255dc5ddff39d86a074d13dd3b8
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Jan 18 14:49:01 2026 -0500

    Javadoc
---
 src/examples/ClassDumper.java                      |  4 ++--
 src/examples/Mini/ASTExpr.java                     |  2 +-
 src/examples/Mini/ASTFunAppl.java                  |  4 ++--
 src/examples/Mini/ASTFunDecl.java                  |  4 ++--
 src/examples/Mini/ASTIfExpr.java                   |  6 ++---
 src/examples/Mini/ASTInteger.java                  |  2 +-
 src/examples/Mini/ASTLetExpr.java                  |  8 +++----
 .../apache/bcel/classfile/AnnotationDefault.java   | 10 ++++----
 .../org/apache/bcel/classfile/AnnotationEntry.java |  2 +-
 .../org/apache/bcel/classfile/Annotations.java     |  2 +-
 .../java/org/apache/bcel/classfile/Attribute.java  | 26 ++++++++++----------
 .../org/apache/bcel/classfile/AttributeReader.java |  2 +-
 .../org/apache/bcel/classfile/ClassParser.java     | 28 +++++++++++-----------
 src/main/java/org/apache/bcel/classfile/Code.java  |  4 +++-
 .../java/org/apache/bcel/classfile/Constant.java   |  4 ++--
 .../java/org/apache/bcel/classfile/ConstantCP.java |  4 ++--
 .../org/apache/bcel/classfile/ConstantDouble.java  |  2 +-
 .../org/apache/bcel/classfile/ConstantDynamic.java |  4 ++--
 .../apache/bcel/classfile/ConstantFieldref.java    |  2 +-
 .../org/apache/bcel/classfile/ConstantFloat.java   |  2 +-
 .../org/apache/bcel/classfile/ConstantInteger.java |  2 +-
 .../bcel/classfile/ConstantInterfaceMethodref.java |  2 +-
 .../bcel/classfile/ConstantInvokeDynamic.java      |  2 +-
 23 files changed, 65 insertions(+), 63 deletions(-)

diff --git a/src/examples/ClassDumper.java b/src/examples/ClassDumper.java
index 194fcc8a..8e7b1616 100644
--- a/src/examples/ClassDumper.java
+++ b/src/examples/ClassDumper.java
@@ -50,8 +50,8 @@ final class ClassDumper {
     /**
      * Parses class from the given stream.
      *
-     * @param file Input stream
-     * @param fileName File name
+     * @param file Input stream.
+     * @param fileName File name.
      */
     public ClassDumper(final FileImageInputStream file, final String fileName) 
{
         this.fileName = fileName;
diff --git a/src/examples/Mini/ASTExpr.java b/src/examples/Mini/ASTExpr.java
index 5f67cf1a..70a8ca01 100644
--- a/src/examples/Mini/ASTExpr.java
+++ b/src/examples/Mini/ASTExpr.java
@@ -294,7 +294,7 @@ public class ASTExpr extends SimpleNode implements 
MiniParserConstants, MiniPars
      * Second and third pass
      *
      * @return type of expression
-     * @param expected type
+     * @param expected type.
      */
     public int eval(final int expected) {
         int childType = Const.T_UNKNOWN, t;
diff --git a/src/examples/Mini/ASTFunAppl.java 
b/src/examples/Mini/ASTFunAppl.java
index ccabdf33..5e1036e7 100644
--- a/src/examples/Mini/ASTFunAppl.java
+++ b/src/examples/Mini/ASTFunAppl.java
@@ -154,8 +154,8 @@ public class ASTFunAppl extends ASTExpr {
     /**
      * Second pass Overrides AstExpr.eval()
      *
-     * @return type of expression
-     * @param expected type
+     * @return type of expression.
+     * @param expected type.
      */
     @Override
     public int eval(final int expected) {
diff --git a/src/examples/Mini/ASTFunDecl.java 
b/src/examples/Mini/ASTFunDecl.java
index 9ffed1ae..3b462ffe 100644
--- a/src/examples/Mini/ASTFunDecl.java
+++ b/src/examples/Mini/ASTFunDecl.java
@@ -358,9 +358,9 @@ public class ASTFunDecl extends SimpleNode implements 
MiniParserTreeConstants {
     }
 
     /**
-     * Second pass
+     * Second pass.
      *
-     * @return type of expression
+     * @return type of expression.
      */
     public int eval(final int pass) {
         final int expected = name.getType(); // Maybe other function has 
already called us
diff --git a/src/examples/Mini/ASTIfExpr.java b/src/examples/Mini/ASTIfExpr.java
index 5c21133d..38cb951f 100644
--- a/src/examples/Mini/ASTIfExpr.java
+++ b/src/examples/Mini/ASTIfExpr.java
@@ -116,10 +116,10 @@ public class ASTIfExpr extends ASTExpr {
     }
 
     /**
-     * Second pass Overrides AstExpr.eval()
+     * Second pass Overrides AstExpr.eval().
      *
-     * @return type of expression
-     * @param expected type
+     * @return type of expression.
+     * @param expected type.
      */
     @Override
     public int eval(final int expected) {
diff --git a/src/examples/Mini/ASTInteger.java 
b/src/examples/Mini/ASTInteger.java
index 58061a78..a11e4675 100644
--- a/src/examples/Mini/ASTInteger.java
+++ b/src/examples/Mini/ASTInteger.java
@@ -67,7 +67,7 @@ public class ASTInteger extends ASTExpr {
     /**
      * Second pass Overrides AstExpr.eval()
      *
-     * @return type of expression
+     * @return type of expression.
      */
     @Override
     public int eval(final int expected) {
diff --git a/src/examples/Mini/ASTLetExpr.java 
b/src/examples/Mini/ASTLetExpr.java
index 5becd5f1..aa65ec18 100644
--- a/src/examples/Mini/ASTLetExpr.java
+++ b/src/examples/Mini/ASTLetExpr.java
@@ -140,10 +140,10 @@ public class ASTLetExpr extends ASTExpr {
     }
 
     /**
-     * Second pass Overrides AstExpr.eval()
+     * Second pass Overrides AstExpr.eval().
      *
-     * @return type of expression
-     * @param expected type
+     * @return type of expression.
+     * @param expected type.
      */
     @Override
     public int eval(final int expected) {
@@ -160,7 +160,7 @@ public class ASTLetExpr extends ASTExpr {
     }
 
     /**
-     * Overrides ASTExpr.traverse()
+     * Overrides ASTExpr.traverse().
      */
     @Override
     public ASTExpr traverse(final Environment env) {
diff --git a/src/main/java/org/apache/bcel/classfile/AnnotationDefault.java 
b/src/main/java/org/apache/bcel/classfile/AnnotationDefault.java
index 1a6b6ae6..312911ff 100644
--- a/src/main/java/org/apache/bcel/classfile/AnnotationDefault.java
+++ b/src/main/java/org/apache/bcel/classfile/AnnotationDefault.java
@@ -35,10 +35,10 @@ public class AnnotationDefault extends Attribute {
     private ElementValue defaultValue;
 
     /**
-     * @param nameIndex Index pointing to the name <em>Code</em>
-     * @param length Content length in bytes
-     * @param input Input stream
-     * @param constantPool Array of constants
+     * @param nameIndex Index pointing to the name <em>Code</em>.
+     * @param length Content length in bytes.
+     * @param input Input stream.
+     * @param constantPool Array of constants.
      */
     AnnotationDefault(final int nameIndex, final int length, final DataInput 
input, final ConstantPool constantPool) throws IOException {
         this(nameIndex, length, (ElementValue) null, constantPool);
@@ -62,7 +62,7 @@ public class AnnotationDefault extends Attribute {
      * Called by objects that are traversing the nodes of the tree implicitly 
defined by the contents of a Java class.
      * I.e., the hierarchy of methods, fields, attributes, etc. spawns a tree 
of objects.
      *
-     * @param v Visitor object
+     * @param v Visitor object.
      */
     @Override
     public void accept(final Visitor v) {
diff --git a/src/main/java/org/apache/bcel/classfile/AnnotationEntry.java 
b/src/main/java/org/apache/bcel/classfile/AnnotationEntry.java
index 5bfb1b5d..afe09d29 100644
--- a/src/main/java/org/apache/bcel/classfile/AnnotationEntry.java
+++ b/src/main/java/org/apache/bcel/classfile/AnnotationEntry.java
@@ -96,7 +96,7 @@ public class AnnotationEntry implements Node {
      * Called by objects that are traversing the nodes of the tree implicitly 
defined by the contents of a Java class.
      * I.e., the hierarchy of methods, fields, attributes, etc. spawns a tree 
of objects.
      *
-     * @param v Visitor object
+     * @param v Visitor object.
      */
     @Override
     public void accept(final Visitor v) {
diff --git a/src/main/java/org/apache/bcel/classfile/Annotations.java 
b/src/main/java/org/apache/bcel/classfile/Annotations.java
index 7e398b1e..7e8bfef6 100644
--- a/src/main/java/org/apache/bcel/classfile/Annotations.java
+++ b/src/main/java/org/apache/bcel/classfile/Annotations.java
@@ -79,7 +79,7 @@ public abstract class Annotations extends Attribute 
implements Iterable<Annotati
      * defined by the contents of a Java class. I.e., the hierarchy of methods,
      * fields, attributes, etc. spawns a tree of objects.
      *
-     * @param v Visitor object
+     * @param v Visitor object.
      */
     @Override
     public void accept(final Visitor v) {
diff --git a/src/main/java/org/apache/bcel/classfile/Attribute.java 
b/src/main/java/org/apache/bcel/classfile/Attribute.java
index 14a62450..82f51f1a 100644
--- a/src/main/java/org/apache/bcel/classfile/Attribute.java
+++ b/src/main/java/org/apache/bcel/classfile/Attribute.java
@@ -70,9 +70,9 @@ public abstract class Attribute implements Cloneable, Node {
      * Add an Attribute reader capable of parsing (user-defined) attributes 
named "name". You should not add readers for the
      * standard attributes such as "LineNumberTable", because those are 
handled internally.
      *
-     * @param name the name of the attribute as stored in the class file
-     * @param attributeReader the reader object
-     * @deprecated (6.0) Use {@link #addAttributeReader(String, 
UnknownAttributeReader)} instead
+     * @param name the name of the attribute as stored in the class file.
+     * @param attributeReader the reader object.
+     * @deprecated (6.0) Use {@link #addAttributeReader(String, 
UnknownAttributeReader)} instead.
      */
     @java.lang.Deprecated
     public static void addAttributeReader(final String name, final 
AttributeReader attributeReader) {
@@ -223,35 +223,35 @@ public abstract class Attribute implements Cloneable, 
Node {
     /**
      * Remove attribute reader
      *
-     * @param name the name of the attribute as stored in the class file
+     * @param name the name of the attribute as stored in the class file.
      */
     public static void removeAttributeReader(final String name) {
         READERS.remove(name);
     }
 
     /**
-     * @deprecated (since 6.0) will be made private; do not access directly, 
use getter/setter
+     * @deprecated (since 6.0) will be made private; do not access directly, 
use getter/setter.
      */
     @java.lang.Deprecated
     protected int name_index; // Points to attribute name in constant pool 
TODO make private (has getter & setter)
 
     /**
-     * @deprecated (since 6.0) (since 6.0) will be made private; do not access 
directly, use getter/setter
+     * @deprecated (since 6.0) (since 6.0) will be made private; do not access 
directly, use getter/setter.
      */
     @java.lang.Deprecated
-    protected int length; // Content length of attribute field TODO make 
private (has getter & setter)
+    protected int length; // Content length of attribute field TODO make 
private (has getter & setter).
 
     /**
      * @deprecated (since 6.0) will be made private; do not access directly, 
use getter/setter
      */
     @java.lang.Deprecated
-    protected byte tag; // Tag to distinguish subclasses TODO make private & 
final; supposed to be immutable
+    protected byte tag; // Tag to distinguish subclasses TODO make private & 
final; supposed to be immutable.
 
     /**
-     * @deprecated (since 6.0) will be made private; do not access directly, 
use getter/setter
+     * @deprecated (since 6.0) will be made private; do not access directly, 
use getter/setter.
      */
     @java.lang.Deprecated
-    protected ConstantPool constant_pool; // TODO make private (has getter & 
setter)
+    protected ConstantPool constant_pool; // TODO make private (has getter & 
setter).
 
     /**
      * Constructs an instance.
@@ -280,7 +280,7 @@ public abstract class Attribute implements Cloneable, Node {
      * Called by objects that are traversing the nodes of the tree implicitly 
defined by the contents of a Java class.
      * I.e., the hierarchy of methods, fields, attributes, etc. spawns a tree 
of objects.
      *
-     * @param v Visitor object
+     * @param v Visitor object.
      */
     @Override
     public abstract void accept(Visitor v);
@@ -288,7 +288,7 @@ public abstract class Attribute implements Cloneable, Node {
     /**
      * Use copy() if you want to have a deep copy(), that is, with all 
references copied correctly.
      *
-     * @return shallow copy of this attribute
+     * @return shallow copy of this attribute.
      */
     @Override
     public Object clone() {
@@ -312,7 +312,7 @@ public abstract class Attribute implements Cloneable, Node {
     /**
      * Dumps attribute to file stream in binary format.
      *
-     * @param file Output file stream
+     * @param file Output file stream.
      * @throws IOException if an I/O error occurs.
      */
     public void dump(final DataOutputStream file) throws IOException {
diff --git a/src/main/java/org/apache/bcel/classfile/AttributeReader.java 
b/src/main/java/org/apache/bcel/classfile/AttributeReader.java
index 003083d3..f81c8a55 100644
--- a/src/main/java/org/apache/bcel/classfile/AttributeReader.java
+++ b/src/main/java/org/apache/bcel/classfile/AttributeReader.java
@@ -23,7 +23,7 @@ package org.apache.bcel.classfile;
  * Attribute.addAttributeReader method. These factory objects should implement 
this interface.
  *
  * @see Attribute
- * @deprecated Use UnknownAttributeReader instead
+ * @deprecated Use UnknownAttributeReader instead.
  */
 @java.lang.Deprecated
 public interface AttributeReader {
diff --git a/src/main/java/org/apache/bcel/classfile/ClassParser.java 
b/src/main/java/org/apache/bcel/classfile/ClassParser.java
index 4cbb23b0..69aba57e 100644
--- a/src/main/java/org/apache/bcel/classfile/ClassParser.java
+++ b/src/main/java/org/apache/bcel/classfile/ClassParser.java
@@ -72,8 +72,8 @@ public final class ClassParser {
     /**
      * Parses class from the given stream.
      *
-     * @param inputStream Input stream
-     * @param fileName File name
+     * @param inputStream Input stream.
+     * @param fileName File name.
      */
     public ClassParser(final InputStream inputStream, final String fileName) {
         this.fileName = fileName;
@@ -90,7 +90,7 @@ public final class ClassParser {
     /**
      * Parses class from given .class file.
      *
-     * @param fileName file name
+     * @param fileName file name.
      */
     public ClassParser(final String fileName) {
         this.isZip = false;
@@ -101,8 +101,8 @@ public final class ClassParser {
     /**
      * Parses class from given .class file in a ZIP-archive
      *
-     * @param zipFile ZIP file name
-     * @param fileName file name
+     * @param zipFile ZIP file name.
+     * @param fileName file name.
      */
     public ClassParser(final String zipFile, final String fileName) {
         this.isZip = true;
@@ -118,7 +118,7 @@ public final class ClassParser {
      *
      * @return Class object representing the parsed class file
      * @throws IOException if an I/O error occurs.
-     * @throws ClassFormatException if a class is malformed or cannot be 
interpreted as a class file
+     * @throws ClassFormatException if a class is malformed or cannot be 
interpreted as a class file.
      */
     public JavaClass parse() throws IOException, ClassFormatException {
         ZipFile zip = null;
@@ -186,7 +186,7 @@ public final class ClassParser {
      * Reads information about the attributes of the class.
      *
      * @throws IOException if an I/O error occurs.
-     * @throws ClassFormatException if a class is malformed or cannot be 
interpreted as a class file
+     * @throws ClassFormatException if a class is malformed or cannot be 
interpreted as a class file.
      */
     private void readAttributes() throws IOException, ClassFormatException {
         final int attributesCount = dataInputStream.readUnsignedShort();
@@ -200,7 +200,7 @@ public final class ClassParser {
      * Reads information about the class and its super class.
      *
      * @throws IOException if an I/O error occurs.
-     * @throws ClassFormatException if a class is malformed or cannot be 
interpreted as a class file
+     * @throws ClassFormatException if a class is malformed or cannot be 
interpreted as a class file.
      */
     private void readClassInfo() throws IOException, ClassFormatException {
         accessFlags = dataInputStream.readUnsignedShort();
@@ -221,7 +221,7 @@ public final class ClassParser {
      * Reads constant pool entries.
      *
      * @throws IOException if an I/O error occurs.
-     * @throws ClassFormatException if a class is malformed or cannot be 
interpreted as a class file
+     * @throws ClassFormatException if a class is malformed or cannot be 
interpreted as a class file.
      */
     private void readConstantPool() throws IOException, ClassFormatException {
         constantPool = new ConstantPool(dataInputStream);
@@ -231,7 +231,7 @@ public final class ClassParser {
      * Reads information about the fields of the class, that is, its variables.
      *
      * @throws IOException if an I/O error occurs.
-     * @throws ClassFormatException if a class is malformed or cannot be 
interpreted as a class file
+     * @throws ClassFormatException if a class is malformed or cannot be 
interpreted as a class file.
      */
     private void readFields() throws IOException, ClassFormatException {
         final int fieldsCount = dataInputStream.readUnsignedShort();
@@ -245,7 +245,7 @@ public final class ClassParser {
      * Checks whether the header of the file is ok. Of course, this has to be 
the first action on successive file reads.
      *
      * @throws IOException if an I/O error occurs.
-     * @throws ClassFormatException if a class is malformed or cannot be 
interpreted as a class file
+     * @throws ClassFormatException if a class is malformed or cannot be 
interpreted as a class file.
      */
     private void readID() throws IOException, ClassFormatException {
         if (dataInputStream.readInt() != Const.JVM_CLASSFILE_MAGIC) {
@@ -257,7 +257,7 @@ public final class ClassParser {
      * Reads information about the interfaces implemented by this class.
      *
      * @throws IOException if an I/O error occurs.
-     * @throws ClassFormatException if a class is malformed or cannot be 
interpreted as a class file
+     * @throws ClassFormatException if a class is malformed or cannot be 
interpreted as a class file.
      */
     private void readInterfaces() throws IOException, ClassFormatException {
         interfaces = readU2U2Table(dataInputStream);
@@ -267,7 +267,7 @@ public final class ClassParser {
      * Reads information about the methods of the class.
      *
      * @throws IOException if an I/O error occurs.
-     * @throws ClassFormatException if a class is malformed or cannot be 
interpreted as a class file
+     * @throws ClassFormatException if a class is malformed or cannot be 
interpreted as a class file.
      */
     private void readMethods() throws IOException {
         final int methodsCount = dataInputStream.readUnsignedShort();
@@ -281,7 +281,7 @@ public final class ClassParser {
      * Reads major and minor version of compiler which created the file.
      *
      * @throws IOException if an I/O error occurs.
-     * @throws ClassFormatException if a class is malformed or cannot be 
interpreted as a class file
+     * @throws ClassFormatException if a class is malformed or cannot be 
interpreted as a class file.
      */
     private void readVersion() throws IOException, ClassFormatException {
         minor = dataInputStream.readUnsignedShort();
diff --git a/src/main/java/org/apache/bcel/classfile/Code.java 
b/src/main/java/org/apache/bcel/classfile/Code.java
index 2537af36..835fb1f8 100644
--- a/src/main/java/org/apache/bcel/classfile/Code.java
+++ b/src/main/java/org/apache/bcel/classfile/Code.java
@@ -243,7 +243,9 @@ public final class Code extends Attribute {
     }
 
     /**
-     * @return the internal length of this code attribute (minus the first 6 
bytes) and excluding all its attributes
+     * Gets the internal length of this code attribute (minus the first 6 
bytes) and excluding all its attributes.
+     *
+     * @return the internal length of this code attribute (minus the first 6 
bytes) and excluding all its attributes.
      */
     private int getInternalLength() {
         return 2 /* maxStack */ + 2 /* maxLocals */ + 4 /* code length */
diff --git a/src/main/java/org/apache/bcel/classfile/Constant.java 
b/src/main/java/org/apache/bcel/classfile/Constant.java
index 78a03588..0127904f 100644
--- a/src/main/java/org/apache/bcel/classfile/Constant.java
+++ b/src/main/java/org/apache/bcel/classfile/Constant.java
@@ -125,7 +125,7 @@ public abstract class Constant implements Cloneable, Node {
      */
 
     /**
-     * @deprecated (since 6.0) will be made private; do not access directly, 
use getter/setter
+     * @deprecated (since 6.0) will be made private; do not access directly, 
use getter/setter.
      */
     @java.lang.Deprecated
     protected byte tag; // TODO should be private & final
@@ -138,7 +138,7 @@ public abstract class Constant implements Cloneable, Node {
      * Called by objects that are traversing the nodes of the tree implicitly 
defined by the contents of a Java class.
      * I.e., the hierarchy of methods, fields, attributes, etc. spawns a tree 
of objects.
      *
-     * @param v Visitor object
+     * @param v Visitor object.
      */
     @Override
     public abstract void accept(Visitor v);
diff --git a/src/main/java/org/apache/bcel/classfile/ConstantCP.java 
b/src/main/java/org/apache/bcel/classfile/ConstantCP.java
index 21a19777..70aff480 100644
--- a/src/main/java/org/apache/bcel/classfile/ConstantCP.java
+++ b/src/main/java/org/apache/bcel/classfile/ConstantCP.java
@@ -41,14 +41,14 @@ public abstract class ConstantCP extends Constant {
     // bootstrap_method_attr_index of a ConstantInvokeDynamic.
 
     /**
-     * @deprecated (since 6.0) will be made private; do not access directly, 
use getter/setter
+     * @deprecated (since 6.0) will be made private; do not access directly, 
use getter/setter.
      */
     @java.lang.Deprecated
     protected int class_index; // TODO make private (has getter & setter)
     // This field has the same meaning for all subclasses.
 
     /**
-     * @deprecated (since 6.0) will be made private; do not access directly, 
use getter/setter
+     * @deprecated (since 6.0) will be made private; do not access directly, 
use getter/setter.
      */
     @java.lang.Deprecated
     protected int name_and_type_index; // TODO make private (has getter & 
setter)
diff --git a/src/main/java/org/apache/bcel/classfile/ConstantDouble.java 
b/src/main/java/org/apache/bcel/classfile/ConstantDouble.java
index 06c02f0b..423bd61d 100644
--- a/src/main/java/org/apache/bcel/classfile/ConstantDouble.java
+++ b/src/main/java/org/apache/bcel/classfile/ConstantDouble.java
@@ -66,7 +66,7 @@ public final class ConstantDouble extends Constant implements 
ConstantObject {
      * Called by objects that are traversing the nodes of the tree implicitly 
defined by the contents of a Java class.
      * I.e., the hierarchy of methods, fields, attributes, etc. spawns a tree 
of objects.
      *
-     * @param v Visitor object
+     * @param v Visitor object.
      */
     @Override
     public void accept(final Visitor v) {
diff --git a/src/main/java/org/apache/bcel/classfile/ConstantDynamic.java 
b/src/main/java/org/apache/bcel/classfile/ConstantDynamic.java
index 4346fbeb..689ddb48 100644
--- a/src/main/java/org/apache/bcel/classfile/ConstantDynamic.java
+++ b/src/main/java/org/apache/bcel/classfile/ConstantDynamic.java
@@ -67,7 +67,7 @@ public final class ConstantDynamic extends ConstantCP {
      * Called by objects that are traversing the nodes of the tree implicitly 
defined by the contents of a Java class. I.e.,
      * the hierarchy of methods, fields, attributes, etc. spawns a tree of 
objects.
      *
-     * @param v Visitor object
+     * @param v Visitor object.
      */
     @Override
     public void accept(final Visitor v) {
@@ -87,7 +87,7 @@ public final class ConstantDynamic extends ConstantCP {
     }
 
     /**
-     * @return String representation
+     * @return String representation.
      */
     @Override
     public String toString() {
diff --git a/src/main/java/org/apache/bcel/classfile/ConstantFieldref.java 
b/src/main/java/org/apache/bcel/classfile/ConstantFieldref.java
index 1a08c116..68ea181a 100644
--- a/src/main/java/org/apache/bcel/classfile/ConstantFieldref.java
+++ b/src/main/java/org/apache/bcel/classfile/ConstantFieldref.java
@@ -61,7 +61,7 @@ public final class ConstantFieldref extends ConstantCP {
      * Called by objects that are traversing the nodes of the tree implicitly 
defined by the contents of a Java class.
      * I.e., the hierarchy of Fields, fields, attributes, etc. spawns a tree 
of objects.
      *
-     * @param v Visitor object
+     * @param v Visitor object.
      */
     @Override
     public void accept(final Visitor v) {
diff --git a/src/main/java/org/apache/bcel/classfile/ConstantFloat.java 
b/src/main/java/org/apache/bcel/classfile/ConstantFloat.java
index 8b54dda8..08413dc1 100644
--- a/src/main/java/org/apache/bcel/classfile/ConstantFloat.java
+++ b/src/main/java/org/apache/bcel/classfile/ConstantFloat.java
@@ -67,7 +67,7 @@ public final class ConstantFloat extends Constant implements 
ConstantObject {
      * Called by objects that are traversing the nodes of the tree implicitly 
defined by the contents of a Java class.
      * I.e., the hierarchy of methods, fields, attributes, etc. spawns a tree 
of objects.
      *
-     * @param v Visitor object
+     * @param v Visitor object.
      */
     @Override
     public void accept(final Visitor v) {
diff --git a/src/main/java/org/apache/bcel/classfile/ConstantInteger.java 
b/src/main/java/org/apache/bcel/classfile/ConstantInteger.java
index 91c81f69..97bce549 100644
--- a/src/main/java/org/apache/bcel/classfile/ConstantInteger.java
+++ b/src/main/java/org/apache/bcel/classfile/ConstantInteger.java
@@ -66,7 +66,7 @@ public final class ConstantInteger extends Constant 
implements ConstantObject {
      * Called by objects that are traversing the nodes of the tree implicitly 
defined by the contents of a Java class.
      * I.e., the hierarchy of methods, fields, attributes, etc. spawns a tree 
of objects.
      *
-     * @param v Visitor object
+     * @param v Visitor object.
      */
     @Override
     public void accept(final Visitor v) {
diff --git 
a/src/main/java/org/apache/bcel/classfile/ConstantInterfaceMethodref.java 
b/src/main/java/org/apache/bcel/classfile/ConstantInterfaceMethodref.java
index e401317e..a389eb77 100644
--- a/src/main/java/org/apache/bcel/classfile/ConstantInterfaceMethodref.java
+++ b/src/main/java/org/apache/bcel/classfile/ConstantInterfaceMethodref.java
@@ -61,7 +61,7 @@ public final class ConstantInterfaceMethodref extends 
ConstantCP {
      * Called by objects that are traversing the nodes of the tree implicitly 
defined by the contents of a Java class.
      * I.e., the hierarchy of methods, fields, attributes, etc. spawns a tree 
of objects.
      *
-     * @param v Visitor object
+     * @param v Visitor object.
      */
     @Override
     public void accept(final Visitor v) {
diff --git a/src/main/java/org/apache/bcel/classfile/ConstantInvokeDynamic.java 
b/src/main/java/org/apache/bcel/classfile/ConstantInvokeDynamic.java
index 1034efc2..823c9b6a 100644
--- a/src/main/java/org/apache/bcel/classfile/ConstantInvokeDynamic.java
+++ b/src/main/java/org/apache/bcel/classfile/ConstantInvokeDynamic.java
@@ -66,7 +66,7 @@ public final class ConstantInvokeDynamic extends ConstantCP {
      * Called by objects that are traversing the nodes of the tree implicitly 
defined by the contents of a Java class. I.e.,
      * the hierarchy of methods, fields, attributes, etc. spawns a tree of 
objects.
      *
-     * @param v Visitor object
+     * @param v Visitor object.
      */
     @Override
     public void accept(final Visitor v) {

Reply via email to