src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/SIPUSH.java
changeset 55496 8e0ae3830fca
parent 47216 71c04702a3d5
equal deleted inserted replaced
55495:badfa812b82a 55496:8e0ae3830fca
    28 /**
    28 /**
    29  * SIPUSH - Push short
    29  * SIPUSH - Push short
    30  *
    30  *
    31  * <PRE>Stack: ... -&gt; ..., value</PRE>
    31  * <PRE>Stack: ... -&gt; ..., value</PRE>
    32  *
    32  *
    33  * @version $Id: SIPUSH.java 1747278 2016-06-07 17:28:43Z britter $
    33  * @version $Id$
    34  */
    34  */
    35 public class SIPUSH extends Instruction implements ConstantPushInstruction {
    35 public class SIPUSH extends Instruction implements ConstantPushInstruction {
    36 
    36 
    37     private short b;
    37     private short b;
    38 
    38 
    39 
    39 
    40     /**
    40     /**
    41      * Empty constructor needed for the Class.newInstance() statement in
    41      * Empty constructor needed for Instruction.readInstruction.
    42      * Instruction.readInstruction(). Not to be used otherwise.
    42      * Not to be used otherwise.
    43      */
    43      */
    44     SIPUSH() {
    44     SIPUSH() {
    45     }
    45     }
    46 
    46 
    47 
    47