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 79558970e1f0d4e185803629f2a1110e3ae55e9f Author: Gary Gregory <[email protected]> AuthorDate: Sat Jan 10 22:50:24 2026 -0500 Javadoc --- .../org/apache/bcel/verifier/structurals/ExecutionVisitor.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/bcel/verifier/structurals/ExecutionVisitor.java b/src/main/java/org/apache/bcel/verifier/structurals/ExecutionVisitor.java index 6afb1afe..46e74a47 100644 --- a/src/main/java/org/apache/bcel/verifier/structurals/ExecutionVisitor.java +++ b/src/main/java/org/apache/bcel/verifier/structurals/ExecutionVisitor.java @@ -89,6 +89,8 @@ public class ExecutionVisitor extends EmptyVisitor { /** * Sets the ConstantPoolGen needed for symbolic execution. + * + * @param cpg the constant pool generator. */ public void setConstantPoolGen(final ConstantPoolGen cpg) { // TODO could be package-protected? this.cpg = cpg; @@ -98,6 +100,7 @@ public class ExecutionVisitor extends EmptyVisitor { * The only method granting access to the single instance of the ExecutionVisitor class. Before actively using this * instance, <strong>SET THE ConstantPoolGen FIRST</strong>. * + * @param f the frame. * @see #setConstantPoolGen(ConstantPoolGen) */ public void setFrame(final Frame f) { // TODO could be package-protected? @@ -1060,7 +1063,11 @@ public class ExecutionVisitor extends EmptyVisitor { } } - /** Symbolically executes the corresponding Java Virtual Machine instruction. */ + /** + * Symbolically executes the corresponding Java Virtual Machine instruction. + * + * @param o the instruction. + */ public void visitLDC_W(final LDC_W o) { final Constant c = cpg.getConstant(o.getIndex()); if (c instanceof ConstantInteger) {
