Skip to content

Commit 7955897

Browse files
committed
Javadoc
1 parent a6cb5fe commit 7955897

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

src/main/java/org/apache/bcel/verifier/structurals/ExecutionVisitor.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ private LocalVariables locals() {
8989

9090
/**
9191
* Sets the ConstantPoolGen needed for symbolic execution.
92+
*
93+
* @param cpg the constant pool generator.
9294
*/
9395
public void setConstantPoolGen(final ConstantPoolGen cpg) { // TODO could be package-protected?
9496
this.cpg = cpg;
@@ -98,6 +100,7 @@ public void setConstantPoolGen(final ConstantPoolGen cpg) { // TODO could be pac
98100
* The only method granting access to the single instance of the ExecutionVisitor class. Before actively using this
99101
* instance, <strong>SET THE ConstantPoolGen FIRST</strong>.
100102
*
103+
* @param f the frame.
101104
* @see #setConstantPoolGen(ConstantPoolGen)
102105
*/
103106
public void setFrame(final Frame f) { // TODO could be package-protected?
@@ -1060,7 +1063,11 @@ public void visitLDC(final LDC o) {
10601063
}
10611064
}
10621065

1063-
/** Symbolically executes the corresponding Java Virtual Machine instruction. */
1066+
/**
1067+
* Symbolically executes the corresponding Java Virtual Machine instruction.
1068+
*
1069+
* @param o the instruction.
1070+
*/
10641071
public void visitLDC_W(final LDC_W o) {
10651072
final Constant c = cpg.getConstant(o.getIndex());
10661073
if (c instanceof ConstantInteger) {

0 commit comments

Comments
 (0)