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 2545338c5fed2cec19d480d1a74c00811a87a58a Author: Gary Gregory <[email protected]> AuthorDate: Sun Jan 11 13:42:38 2026 -0500 Javadoc --- .../java/org/apache/bcel/generic/InvokeInstruction.java | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/bcel/generic/InvokeInstruction.java b/src/main/java/org/apache/bcel/generic/InvokeInstruction.java index 417aa1d9..dcc932f4 100644 --- a/src/main/java/org/apache/bcel/generic/InvokeInstruction.java +++ b/src/main/java/org/apache/bcel/generic/InvokeInstruction.java @@ -38,7 +38,10 @@ public abstract class InvokeInstruction extends FieldOrMethod implements Excepti } /** - * @param index to constant pool + * Constructs an InvokeInstruction. + * + * @param opcode the opcode. + * @param index to constant pool. */ protected InvokeInstruction(final short opcode, final int index) { super(opcode, index); @@ -64,6 +67,9 @@ public abstract class InvokeInstruction extends FieldOrMethod implements Excepti } /** + * Gets the argument types of referenced method. + * + * @param cpg the constant pool generator. * @return argument types of referenced method. */ public Type[] getArgumentTypes(final ConstantPoolGen cpg) { @@ -85,6 +91,9 @@ public abstract class InvokeInstruction extends FieldOrMethod implements Excepti } /** + * Gets the name of referenced method. + * + * @param cpg the constant pool generator. * @return name of referenced method. */ public String getMethodName(final ConstantPoolGen cpg) { @@ -92,6 +101,9 @@ public abstract class InvokeInstruction extends FieldOrMethod implements Excepti } /** + * Gets the return type of referenced method. + * + * @param cpg the constant pool generator. * @return return type of referenced method. */ public Type getReturnType(final ConstantPoolGen cpg) { @@ -99,6 +111,9 @@ public abstract class InvokeInstruction extends FieldOrMethod implements Excepti } /** + * Gets the return type of referenced method. + * + * @param cpg the constant pool generator. * @return return type of referenced method. */ @Override
