class com.sun.glass.ui.monocle.IntSet
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.sun.glass.ui.monocle.IntSet
  super_class: java.lang.Object
{
  private int[] elements;
    descriptor: [I
    flags: (0x0002) ACC_PRIVATE

  private int size;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.glass.ui.monocle.IntSet this
         0: .line 33
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 34
            aload 0 /* this */
            iconst_4
            newarray 10
            putfield com.sun.glass.ui.monocle.IntSet.elements:[I
         2: .line 35
            aload 0 /* this */
            iconst_0
            putfield com.sun.glass.ui.monocle.IntSet.size:I
         3: .line 33
            return
        end local 0 // com.sun.glass.ui.monocle.IntSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/glass/ui/monocle/IntSet;

  void addInt(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // com.sun.glass.ui.monocle.IntSet this
        start local 1 // int value
         0: .line 38
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual com.sun.glass.ui.monocle.IntSet.getIndex:(I)I
            istore 2 /* i */
        start local 2 // int i
         1: .line 39
            iload 2 /* i */
            ifge 12
         2: .line 40
            iconst_m1
            iload 2 /* i */
            isub
            istore 3 /* insertionPoint */
        start local 3 // int insertionPoint
         3: .line 41
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            arraylength
            if_icmpne 5
         4: .line 42
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            iconst_2
            imul
            invokestatic java.util.Arrays.copyOf:([II)[I
            putfield com.sun.glass.ui.monocle.IntSet.elements:[I
         5: .line 44
      StackMap locals: int int
      StackMap stack:
            iload 3 /* insertionPoint */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            if_icmpeq 10
         6: .line 45
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            iload 3 /* insertionPoint */
         7: .line 46
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            iload 3 /* insertionPoint */
            iconst_1
            iadd
         8: .line 47
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            iload 3 /* insertionPoint */
            isub
         9: .line 45
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 49
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            iload 3 /* insertionPoint */
            iload 1 /* value */
            iastore
        11: .line 50
            aload 0 /* this */
            dup
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            iconst_1
            iadd
            putfield com.sun.glass.ui.monocle.IntSet.size:I
        end local 3 // int insertionPoint
        12: .line 52
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int i
        end local 1 // int value
        end local 0 // com.sun.glass.ui.monocle.IntSet this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   13     0            this  Lcom/sun/glass/ui/monocle/IntSet;
            0   13     1           value  I
            1   13     2               i  I
            3   12     3  insertionPoint  I
    MethodParameters:
       Name  Flags
      value  

  void removeInt(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // com.sun.glass.ui.monocle.IntSet this
        start local 1 // int value
         0: .line 55
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual com.sun.glass.ui.monocle.IntSet.getIndex:(I)I
            istore 2 /* i */
        start local 2 // int i
         1: .line 56
            iload 2 /* i */
            iflt 5
         2: .line 57
            iload 2 /* i */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            iconst_1
            isub
            if_icmpge 4
         3: .line 58
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            iload 2 /* i */
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            iload 2 /* i */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            iload 2 /* i */
            isub
            iconst_1
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 60
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            iconst_1
            isub
            putfield com.sun.glass.ui.monocle.IntSet.size:I
         5: .line 62
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int i
        end local 1 // int value
        end local 0 // com.sun.glass.ui.monocle.IntSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lcom/sun/glass/ui/monocle/IntSet;
            0    6     1  value  I
            1    6     2      i  I
    MethodParameters:
       Name  Flags
      value  

  boolean containsInt(int);
    descriptor: (I)Z
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.glass.ui.monocle.IntSet this
        start local 1 // int value
         0: .line 65
            aload 0 /* this */
            iload 1 /* value */
            invokevirtual com.sun.glass.ui.monocle.IntSet.getIndex:(I)I
            iflt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // int value
        end local 0 // com.sun.glass.ui.monocle.IntSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/sun/glass/ui/monocle/IntSet;
            0    2     1  value  I
    MethodParameters:
       Name  Flags
      value  

  private int getIndex(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.sun.glass.ui.monocle.IntSet this
        start local 1 // int value
         0: .line 70
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 7
         2: .line 71
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            iload 2 /* i */
            iaload
            iload 1 /* value */
            if_icmpne 4
         3: .line 72
            iload 2 /* i */
            ireturn
         4: .line 73
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            iload 2 /* i */
            iaload
            iload 1 /* value */
            if_icmple 6
         5: .line 74
            iload 2 /* i */
            ineg
            iconst_1
            isub
            ireturn
         6: .line 70
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 2 /* i */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            if_icmplt 2
         8: .line 77
            iload 2 /* i */
            ineg
            iconst_1
            isub
            ireturn
        end local 2 // int i
        end local 1 // int value
        end local 0 // com.sun.glass.ui.monocle.IntSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lcom/sun/glass/ui/monocle/IntSet;
            0    9     1  value  I
            1    9     2      i  I
    MethodParameters:
       Name  Flags
      value  

  int get(int);
    descriptor: (I)I
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.glass.ui.monocle.IntSet this
        start local 1 // int index
         0: .line 81
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            iload 1 /* index */
            iaload
            ireturn
        end local 1 // int index
        end local 0 // com.sun.glass.ui.monocle.IntSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/glass/ui/monocle/IntSet;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  void difference(com.sun.glass.ui.monocle.IntSet, com.sun.glass.ui.monocle.IntSet);
    descriptor: (Lcom/sun/glass/ui/monocle/IntSet;Lcom/sun/glass/ui/monocle/IntSet;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=7, args_size=3
        start local 0 // com.sun.glass.ui.monocle.IntSet this
        start local 1 // com.sun.glass.ui.monocle.IntSet dest
        start local 2 // com.sun.glass.ui.monocle.IntSet compared
         0: .line 87
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: .line 88
            iconst_0
            istore 4 /* j */
        start local 4 // int j
         2: .line 89
            goto 14
         3: .line 90
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            iload 3 /* i */
            iaload
            istore 5 /* a */
        start local 5 // int a
         4: .line 91
            aload 2 /* compared */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            iload 4 /* j */
            iaload
            istore 6 /* b */
        start local 6 // int b
         5: .line 92
            iload 5 /* a */
            iload 6 /* b */
            if_icmpge 9
         6: .line 94
            aload 1 /* dest */
            iload 5 /* a */
            invokevirtual com.sun.glass.ui.monocle.IntSet.addInt:(I)V
         7: .line 95
            iinc 3 /* i */ 1
         8: .line 96
            goto 14
      StackMap locals: int int
      StackMap stack:
         9: iload 5 /* a */
            iload 6 /* b */
            if_icmple 12
        10: .line 98
            iinc 4 /* j */ 1
        11: .line 99
            goto 14
        12: .line 101
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
        13: .line 102
            iinc 4 /* j */ 1
        end local 6 // int b
        end local 5 // int a
        14: .line 89
      StackMap locals:
      StackMap stack:
            iload 3 /* i */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            if_icmpge 18
            iload 4 /* j */
            aload 2 /* compared */
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            if_icmplt 3
        15: .line 106
            goto 18
        16: .line 107
      StackMap locals:
      StackMap stack:
            aload 1 /* dest */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            iload 3 /* i */
            iaload
            invokevirtual com.sun.glass.ui.monocle.IntSet.addInt:(I)V
        17: .line 108
            iinc 3 /* i */ 1
        18: .line 106
      StackMap locals:
      StackMap stack:
            iload 3 /* i */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            if_icmplt 16
        19: .line 110
            return
        end local 4 // int j
        end local 3 // int i
        end local 2 // com.sun.glass.ui.monocle.IntSet compared
        end local 1 // com.sun.glass.ui.monocle.IntSet dest
        end local 0 // com.sun.glass.ui.monocle.IntSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   20     0      this  Lcom/sun/glass/ui/monocle/IntSet;
            0   20     1      dest  Lcom/sun/glass/ui/monocle/IntSet;
            0   20     2  compared  Lcom/sun/glass/ui/monocle/IntSet;
            1   20     3         i  I
            2   20     4         j  I
            4   14     5         a  I
            5   14     6         b  I
    MethodParameters:
          Name  Flags
      dest      
      compared  

  void clear();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.glass.ui.monocle.IntSet this
         0: .line 113
            aload 0 /* this */
            iconst_0
            putfield com.sun.glass.ui.monocle.IntSet.size:I
         1: .line 114
            return
        end local 0 // com.sun.glass.ui.monocle.IntSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/glass/ui/monocle/IntSet;

  int size();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.glass.ui.monocle.IntSet this
         0: .line 117
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            ireturn
        end local 0 // com.sun.glass.ui.monocle.IntSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/glass/ui/monocle/IntSet;

  boolean isEmpty();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.glass.ui.monocle.IntSet this
         0: .line 121
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.sun.glass.ui.monocle.IntSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/glass/ui/monocle/IntSet;

  void copyTo(com.sun.glass.ui.monocle.IntSet);
    descriptor: (Lcom/sun/glass/ui/monocle/IntSet;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.sun.glass.ui.monocle.IntSet this
        start local 1 // com.sun.glass.ui.monocle.IntSet target
         0: .line 126
            aload 1 /* target */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            arraylength
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            if_icmpge 3
         1: .line 127
            aload 1 /* target */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            arraylength
            invokestatic java.util.Arrays.copyOf:([II)[I
            putfield com.sun.glass.ui.monocle.IntSet.elements:[I
         2: .line 128
            goto 4
         3: .line 129
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            iconst_0
            aload 1 /* target */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            iconst_0
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 131
      StackMap locals:
      StackMap stack:
            aload 1 /* target */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            putfield com.sun.glass.ui.monocle.IntSet.size:I
         5: .line 132
            return
        end local 1 // com.sun.glass.ui.monocle.IntSet target
        end local 0 // com.sun.glass.ui.monocle.IntSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lcom/sun/glass/ui/monocle/IntSet;
            0    6     1  target  Lcom/sun/glass/ui/monocle/IntSet;
    MethodParameters:
        Name  Flags
      target  

  public boolean equals(com.sun.glass.ui.monocle.IntSet);
    descriptor: (Lcom/sun/glass/ui/monocle/IntSet;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.sun.glass.ui.monocle.IntSet this
        start local 1 // com.sun.glass.ui.monocle.IntSet set
         0: .line 135
            aload 1 /* set */
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            if_icmpne 8
         1: .line 136
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 6
         3: .line 137
      StackMap locals: int
      StackMap stack:
            aload 1 /* set */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            iload 2 /* i */
            iaload
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            iload 2 /* i */
            iaload
            if_icmpeq 5
         4: .line 138
            iconst_0
            ireturn
         5: .line 136
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            if_icmplt 3
        end local 2 // int i
         7: .line 141
            iconst_1
            ireturn
         8: .line 143
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // com.sun.glass.ui.monocle.IntSet set
        end local 0 // com.sun.glass.ui.monocle.IntSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/sun/glass/ui/monocle/IntSet;
            0    9     1   set  Lcom/sun/glass/ui/monocle/IntSet;
            2    7     2     i  I
    MethodParameters:
      Name  Flags
      set   

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.glass.ui.monocle.IntSet this
        start local 1 // java.lang.Object o
         0: .line 148
            aload 1 /* o */
            instanceof com.sun.glass.ui.monocle.IntSet
            ifeq 2
         1: .line 149
            aload 0 /* this */
            aload 1 /* o */
            checkcast com.sun.glass.ui.monocle.IntSet
            invokevirtual com.sun.glass.ui.monocle.IntSet.equals:(Lcom/sun/glass/ui/monocle/IntSet;)Z
            ireturn
         2: .line 151
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // com.sun.glass.ui.monocle.IntSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/glass/ui/monocle/IntSet;
            0    3     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.sun.glass.ui.monocle.IntSet this
         0: .line 156
            new java.lang.StringBuffer
            dup
            ldc "IntSet["
            invokespecial java.lang.StringBuffer.<init>:(Ljava/lang/String;)V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuffer sb
         1: .line 157
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 7
         3: .line 158
      StackMap locals: java.lang.StringBuffer int
      StackMap stack:
            aload 1 /* sb */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.elements:[I
            iload 2 /* i */
            iaload
            invokevirtual java.lang.StringBuffer.append:(I)Ljava/lang/StringBuffer;
            pop
         4: .line 159
            iload 2 /* i */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            iconst_1
            isub
            if_icmpge 6
         5: .line 160
            aload 1 /* sb */
            ldc ","
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         6: .line 157
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 2 /* i */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.IntSet.size:I
            if_icmplt 3
        end local 2 // int i
         8: .line 163
            aload 1 /* sb */
            ldc "]"
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         9: .line 164
            aload 1 /* sb */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuffer sb
        end local 0 // com.sun.glass.ui.monocle.IntSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lcom/sun/glass/ui/monocle/IntSet;
            1   10     1    sb  Ljava/lang/StringBuffer;
            2    8     2     i  I
}
SourceFile: "IntSet.java"