src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/LOOKUPSWITCH.java
changeset 55496 8e0ae3830fca
parent 47216 71c04702a3d5
equal deleted inserted replaced
55495:badfa812b82a 55496:8e0ae3830fca
    27 import com.sun.org.apache.bcel.internal.util.ByteSequence;
    27 import com.sun.org.apache.bcel.internal.util.ByteSequence;
    28 
    28 
    29 /**
    29 /**
    30  * LOOKUPSWITCH - Switch with unordered set of values
    30  * LOOKUPSWITCH - Switch with unordered set of values
    31  *
    31  *
    32  * @version $Id: LOOKUPSWITCH.java 1747278 2016-06-07 17:28:43Z britter $
    32  * @version $Id$
    33  * @see SWITCH
    33  * @see SWITCH
    34  */
    34  */
    35 public class LOOKUPSWITCH extends Select {
    35 public class LOOKUPSWITCH extends Select {
    36 
    36 
    37     /**
    37     /**
    38      * Empty constructor needed for the Class.newInstance() statement in
    38      * Empty constructor needed for Instruction.readInstruction.
    39      * Instruction.readInstruction(). Not to be used otherwise.
    39      * Not to be used otherwise.
    40      */
    40      */
    41     LOOKUPSWITCH() {
    41     LOOKUPSWITCH() {
    42     }
    42     }
    43 
    43 
    44 
    44