You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/12/06 11:41:15 UTC

[commons-bcel] branch master updated (dc437a16 -> b0bb39fa)

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

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


    from dc437a16 Undo Bump actions/setup-java from 3.6.0 to 3.7.0 #126
     new 84621c46 Javadoc (Alex Herbert)
     new b0bb39fa Javadoc

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/main/java/org/apache/bcel/classfile/MethodParameter.java | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)


[commons-bcel] 02/02: Javadoc

Posted by gg...@apache.org.
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 b0bb39fa1732fdb0955f8d130d76cb8f189e3255
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Tue Dec 6 06:41:11 2022 -0500

    Javadoc
---
 src/main/java/org/apache/bcel/classfile/MethodParameter.java | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/bcel/classfile/MethodParameter.java b/src/main/java/org/apache/bcel/classfile/MethodParameter.java
index 9cf96e53..bf53b1b7 100644
--- a/src/main/java/org/apache/bcel/classfile/MethodParameter.java
+++ b/src/main/java/org/apache/bcel/classfile/MethodParameter.java
@@ -45,7 +45,7 @@ public class MethodParameter implements Cloneable, Node {
     }
 
     /**
-     * Construct object from input stream.
+     * Constructs an instance from a DataInput.
      *
      * @param input Input stream
      * @throws IOException if an I/O error occurs.
@@ -74,7 +74,7 @@ public class MethodParameter implements Cloneable, Node {
     }
 
     /**
-     * Dump object to file stream on binary format.
+     * Dumps object to file stream on binary format.
      *
      * @param file Output file stream
      * @throws IOException if an I/O error occurs.
@@ -93,7 +93,10 @@ public class MethodParameter implements Cloneable, Node {
     }
 
     /**
-     * Returns the name of the parameter.
+     * Gets the name of the parameter.
+     *
+     * @param constantPool The pool to query.
+     * @return Constant from the given pool.
      */
     public String getParameterName(final ConstantPool constantPool) {
         if (nameIndex == 0) {


[commons-bcel] 01/02: Javadoc (Alex Herbert)

Posted by gg...@apache.org.
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 84621c4655baadb2d7af92e9f72c5ce7286a8401
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Tue Dec 6 06:39:43 2022 -0500

    Javadoc (Alex Herbert)
---
 src/main/java/org/apache/bcel/classfile/MethodParameter.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/main/java/org/apache/bcel/classfile/MethodParameter.java b/src/main/java/org/apache/bcel/classfile/MethodParameter.java
index f15b81a5..9cf96e53 100644
--- a/src/main/java/org/apache/bcel/classfile/MethodParameter.java
+++ b/src/main/java/org/apache/bcel/classfile/MethodParameter.java
@@ -25,6 +25,9 @@ import org.apache.bcel.Const;
 
 /**
  * Entry of the parameters table.
+ * <p>
+ * Implements {@link Node} as of 6.7.0.
+ * </p>
  *
  * @see <a href="https://docs.oracle.com/javase/specs/jvms/se8/html/jvms-4.html#jvms-4.7.24"> The class File Format :
  *      The MethodParameters Attribute</a>