src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/SWITCH.java
changeset 55496 8e0ae3830fca
parent 47216 71c04702a3d5
equal deleted inserted replaced
55495:badfa812b82a 55496:8e0ae3830fca
    24 /**
    24 /**
    25  * SWITCH - Branch depending on int value, generates either LOOKUPSWITCH or
    25  * SWITCH - Branch depending on int value, generates either LOOKUPSWITCH or
    26  * TABLESWITCH instruction, depending on whether the match values (int[]) can be
    26  * TABLESWITCH instruction, depending on whether the match values (int[]) can be
    27  * sorted with no gaps between the numbers.
    27  * sorted with no gaps between the numbers.
    28  *
    28  *
    29  * @version $Id: SWITCH.java 1749603 2016-06-21 20:50:19Z ggregory $
    29  * @version $Id$
    30  */
    30  */
    31 public final class SWITCH implements CompoundInstruction {
    31 public final class SWITCH implements CompoundInstruction {
    32 
    32 
    33     private int[] match;
    33     private int[] match;
    34     private InstructionHandle[] targets;
    34     private InstructionHandle[] targets;