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 91287f6e343059e77b7258138022d510b0146585 Author: Gary Gregory <[email protected]> AuthorDate: Sat Feb 14 08:59:55 2026 -0500 Javadoc --- src/main/java/org/apache/bcel/generic/PUSH.java | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/main/java/org/apache/bcel/generic/PUSH.java b/src/main/java/org/apache/bcel/generic/PUSH.java index b0e5a42f..565a52fc 100644 --- a/src/main/java/org/apache/bcel/generic/PUSH.java +++ b/src/main/java/org/apache/bcel/generic/PUSH.java @@ -45,6 +45,8 @@ public final class PUSH implements CompoundInstruction, VariableLengthInstructio } /** + * Constructs a PUSH for a boolean value. + * * @param cp Constant pool. * @param value to push. */ @@ -54,6 +56,8 @@ public final class PUSH implements CompoundInstruction, VariableLengthInstructio } /** + * Constructs a PUSH for a Boolean value. + * * @param cp Constant pool. * @param value to push. */ @@ -73,6 +77,8 @@ public final class PUSH implements CompoundInstruction, VariableLengthInstructio } /** + * Constructs a PUSH for a double value. + * * @param cp Constant pool. * @param value to push. */ @@ -87,6 +93,8 @@ public final class PUSH implements CompoundInstruction, VariableLengthInstructio } /** + * Constructs a PUSH for a float value. + * * @param cp Constant pool. * @param value to push. */ @@ -121,6 +129,8 @@ public final class PUSH implements CompoundInstruction, VariableLengthInstructio } /** + * Constructs a PUSH for a long value. + * * @param cp Constant pool. * @param value to push. */ @@ -135,6 +145,8 @@ public final class PUSH implements CompoundInstruction, VariableLengthInstructio } /** + * Constructs a PUSH for a Number value. + * * @param cp Constant pool. * @param value to push. */ @@ -153,6 +165,7 @@ public final class PUSH implements CompoundInstruction, VariableLengthInstructio } /** + * Constructs a PUSH for an ObjectType value. * * @param cp The constant pool. * @param value to push. @@ -167,6 +180,8 @@ public final class PUSH implements CompoundInstruction, VariableLengthInstructio } /** + * Constructs a PUSH for a String value. + * * @param cp Constant pool. * @param value to push. */ @@ -178,6 +193,11 @@ public final class PUSH implements CompoundInstruction, VariableLengthInstructio } } + /** + * Gets the instruction. + * + * @return the instruction. + */ public Instruction getInstruction() { return instruction; }
