public class javax.swing.text.ZoneView extends javax.swing.text.BoxView
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: javax.swing.text.ZoneView
  super_class: javax.swing.text.BoxView
{
  int maxZoneSize;
    descriptor: I
    flags: (0x0000) 

  int maxZonesLoaded;
    descriptor: I
    flags: (0x0000) 

  java.util.Vector<javax.swing.text.View> loadedZones;
    descriptor: Ljava/util/Vector;
    flags: (0x0000) 
    Signature: Ljava/util/Vector<Ljavax/swing/text/View;>;

  public void <init>(javax.swing.text.Element, int);
    descriptor: (Ljavax/swing/text/Element;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // javax.swing.text.ZoneView this
        start local 1 // javax.swing.text.Element elem
        start local 2 // int axis
         0: .line 91
            aload 0 /* this */
            aload 1 /* elem */
            iload 2 /* axis */
            invokespecial javax.swing.text.BoxView.<init>:(Ljavax/swing/text/Element;I)V
         1: .line 80
            aload 0 /* this */
            sipush 8192
            putfield javax.swing.text.ZoneView.maxZoneSize:I
         2: .line 81
            aload 0 /* this */
            iconst_3
            putfield javax.swing.text.ZoneView.maxZonesLoaded:I
         3: .line 92
            aload 0 /* this */
            new java.util.Vector
            dup
            invokespecial java.util.Vector.<init>:()V
            putfield javax.swing.text.ZoneView.loadedZones:Ljava/util/Vector;
         4: .line 93
            return
        end local 2 // int axis
        end local 1 // javax.swing.text.Element elem
        end local 0 // javax.swing.text.ZoneView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljavax/swing/text/ZoneView;
            0    5     1  elem  Ljavax/swing/text/Element;
            0    5     2  axis  I
    MethodParameters:
      Name  Flags
      elem  
      axis  

  public int getMaximumZoneSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.text.ZoneView this
         0: .line 99
            aload 0 /* this */
            getfield javax.swing.text.ZoneView.maxZoneSize:I
            ireturn
        end local 0 // javax.swing.text.ZoneView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/ZoneView;

  public void setMaximumZoneSize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.text.ZoneView this
        start local 1 // int size
         0: .line 114
            aload 0 /* this */
            iload 1 /* size */
            putfield javax.swing.text.ZoneView.maxZoneSize:I
         1: .line 115
            return
        end local 1 // int size
        end local 0 // javax.swing.text.ZoneView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/text/ZoneView;
            0    2     1  size  I
    MethodParameters:
      Name  Flags
      size  

  public int getMaxZonesLoaded();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.text.ZoneView this
         0: .line 122
            aload 0 /* this */
            getfield javax.swing.text.ZoneView.maxZonesLoaded:I
            ireturn
        end local 0 // javax.swing.text.ZoneView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/ZoneView;

  public void setMaxZonesLoaded(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javax.swing.text.ZoneView this
        start local 1 // int mzl
         0: .line 136
            iload 1 /* mzl */
            iconst_1
            if_icmpge 2
         1: .line 137
            new java.lang.IllegalArgumentException
            dup
            ldc "ZoneView.setMaxZonesLoaded must be greater than 0."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* mzl */
            putfield javax.swing.text.ZoneView.maxZonesLoaded:I
         3: .line 140
            aload 0 /* this */
            invokevirtual javax.swing.text.ZoneView.unloadOldZones:()V
         4: .line 141
            return
        end local 1 // int mzl
        end local 0 // javax.swing.text.ZoneView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljavax/swing/text/ZoneView;
            0    5     1   mzl  I
    MethodParameters:
      Name  Flags
      mzl   

  protected void zoneWasLoaded(javax.swing.text.View);
    descriptor: (Ljavax/swing/text/View;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.text.ZoneView this
        start local 1 // javax.swing.text.View zone
         0: .line 154
            aload 0 /* this */
            getfield javax.swing.text.ZoneView.loadedZones:Ljava/util/Vector;
            aload 1 /* zone */
            invokevirtual java.util.Vector.addElement:(Ljava/lang/Object;)V
         1: .line 155
            aload 0 /* this */
            invokevirtual javax.swing.text.ZoneView.unloadOldZones:()V
         2: .line 156
            return
        end local 1 // javax.swing.text.View zone
        end local 0 // javax.swing.text.ZoneView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavax/swing/text/ZoneView;
            0    3     1  zone  Ljavax/swing/text/View;
    MethodParameters:
      Name  Flags
      zone  

  void unloadOldZones();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // javax.swing.text.ZoneView this
         0: .line 159
            goto 4
         1: .line 160
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.text.ZoneView.loadedZones:Ljava/util/Vector;
            iconst_0
            invokevirtual java.util.Vector.elementAt:(I)Ljava/lang/Object;
            checkcast javax.swing.text.View
            astore 1 /* zone */
        start local 1 // javax.swing.text.View zone
         2: .line 161
            aload 0 /* this */
            getfield javax.swing.text.ZoneView.loadedZones:Ljava/util/Vector;
            iconst_0
            invokevirtual java.util.Vector.removeElementAt:(I)V
         3: .line 162
            aload 0 /* this */
            aload 1 /* zone */
            invokevirtual javax.swing.text.ZoneView.unloadZone:(Ljavax/swing/text/View;)V
        end local 1 // javax.swing.text.View zone
         4: .line 159
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.text.ZoneView.loadedZones:Ljava/util/Vector;
            invokevirtual java.util.Vector.size:()I
            aload 0 /* this */
            invokevirtual javax.swing.text.ZoneView.getMaxZonesLoaded:()I
            if_icmpgt 1
         5: .line 164
            return
        end local 0 // javax.swing.text.ZoneView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljavax/swing/text/ZoneView;
            2    4     1  zone  Ljavax/swing/text/View;

  protected void unloadZone(javax.swing.text.View);
    descriptor: (Ljavax/swing/text/View;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // javax.swing.text.ZoneView this
        start local 1 // javax.swing.text.View zone
         0: .line 178
            aload 1 /* zone */
            invokevirtual javax.swing.text.View.removeAll:()V
         1: .line 179
            return
        end local 1 // javax.swing.text.View zone
        end local 0 // javax.swing.text.ZoneView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/text/ZoneView;
            0    2     1  zone  Ljavax/swing/text/View;
    MethodParameters:
      Name  Flags
      zone  

  protected boolean isZoneLoaded(javax.swing.text.View);
    descriptor: (Ljavax/swing/text/View;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // javax.swing.text.ZoneView this
        start local 1 // javax.swing.text.View zone
         0: .line 189
            aload 1 /* zone */
            invokevirtual javax.swing.text.View.getViewCount:()I
            ifle 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // javax.swing.text.View zone
        end local 0 // javax.swing.text.ZoneView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/text/ZoneView;
            0    2     1  zone  Ljavax/swing/text/View;
    MethodParameters:
      Name  Flags
      zone  

  protected javax.swing.text.View createZone(int, int);
    descriptor: (II)Ljavax/swing/text/View;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=6, args_size=3
        start local 0 // javax.swing.text.ZoneView this
        start local 1 // int p0
        start local 2 // int p1
         0: .line 208
            aload 0 /* this */
            invokevirtual javax.swing.text.ZoneView.getDocument:()Ljavax/swing/text/Document;
            astore 3 /* doc */
        start local 3 // javax.swing.text.Document doc
         1: .line 211
            new javax.swing.text.ZoneView$Zone
            dup
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual javax.swing.text.ZoneView.getElement:()Ljavax/swing/text/Element;
         2: .line 212
            aload 3 /* doc */
            iload 1 /* p0 */
            invokeinterface javax.swing.text.Document.createPosition:(I)Ljavax/swing/text/Position;
         3: .line 213
            aload 3 /* doc */
            iload 2 /* p1 */
            invokeinterface javax.swing.text.Document.createPosition:(I)Ljavax/swing/text/Position;
         4: .line 211
            invokespecial javax.swing.text.ZoneView$Zone.<init>:(Ljavax/swing/text/ZoneView;Ljavax/swing/text/Element;Ljavax/swing/text/Position;Ljavax/swing/text/Position;)V
            astore 4 /* zone */
        start local 4 // javax.swing.text.View zone
         5: .line 214
            goto 8
        end local 4 // javax.swing.text.View zone
      StackMap locals: javax.swing.text.ZoneView int int javax.swing.text.Document
      StackMap stack: javax.swing.text.BadLocationException
         6: astore 5 /* ble */
        start local 5 // javax.swing.text.BadLocationException ble
         7: .line 216
            new javax.swing.text.StateInvariantError
            dup
            aload 5 /* ble */
            invokevirtual javax.swing.text.BadLocationException.getMessage:()Ljava/lang/String;
            invokespecial javax.swing.text.StateInvariantError.<init>:(Ljava/lang/String;)V
            athrow
        end local 5 // javax.swing.text.BadLocationException ble
        start local 4 // javax.swing.text.View zone
         8: .line 218
      StackMap locals: javax.swing.text.View
      StackMap stack:
            aload 4 /* zone */
            areturn
        end local 4 // javax.swing.text.View zone
        end local 3 // javax.swing.text.Document doc
        end local 2 // int p1
        end local 1 // int p0
        end local 0 // javax.swing.text.ZoneView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Ljavax/swing/text/ZoneView;
            0    9     1    p0  I
            0    9     2    p1  I
            1    9     3   doc  Ljavax/swing/text/Document;
            5    6     4  zone  Ljavax/swing/text/View;
            8    9     4  zone  Ljavax/swing/text/View;
            7    8     5   ble  Ljavax/swing/text/BadLocationException;
      Exception table:
        from    to  target  type
           1     5       6  Class javax.swing.text.BadLocationException
    MethodParameters:
      Name  Flags
      p0    
      p1    

  protected void loadChildren(javax.swing.text.ViewFactory);
    descriptor: (Ljavax/swing/text/ViewFactory;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // javax.swing.text.ZoneView this
        start local 1 // javax.swing.text.ViewFactory f
         0: .line 234
            aload 0 /* this */
            invokevirtual javax.swing.text.ZoneView.getDocument:()Ljavax/swing/text/Document;
            pop
         1: .line 235
            aload 0 /* this */
            invokevirtual javax.swing.text.ZoneView.getStartOffset:()I
            istore 2 /* offs0 */
        start local 2 // int offs0
         2: .line 236
            aload 0 /* this */
            invokevirtual javax.swing.text.ZoneView.getEndOffset:()I
            istore 3 /* offs1 */
        start local 3 // int offs1
         3: .line 237
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* offs0 */
            iload 3 /* offs1 */
            invokevirtual javax.swing.text.ZoneView.createZone:(II)Ljavax/swing/text/View;
            invokevirtual javax.swing.text.ZoneView.append:(Ljavax/swing/text/View;)V
         4: .line 238
            aload 0 /* this */
            iload 2 /* offs0 */
            iload 3 /* offs1 */
            iload 2 /* offs0 */
            isub
            invokevirtual javax.swing.text.ZoneView.handleInsert:(II)V
         5: .line 239
            return
        end local 3 // int offs1
        end local 2 // int offs0
        end local 1 // javax.swing.text.ViewFactory f
        end local 0 // javax.swing.text.ZoneView this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Ljavax/swing/text/ZoneView;
            0    6     1      f  Ljavax/swing/text/ViewFactory;
            2    6     2  offs0  I
            3    6     3  offs1  I
    MethodParameters:
      Name  Flags
      f     

  protected int getViewIndexAtPosition(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // javax.swing.text.ZoneView this
        start local 1 // int pos
         0: .line 252
            aload 0 /* this */
            invokevirtual javax.swing.text.ZoneView.getViewCount:()I
            istore 2 /* n */
        start local 2 // int n
         1: .line 253
            iload 1 /* pos */
            aload 0 /* this */
            invokevirtual javax.swing.text.ZoneView.getEndOffset:()I
            if_icmpne 3
         2: .line 254
            iload 2 /* n */
            iconst_1
            isub
            ireturn
         3: .line 256
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 10
         5: .line 257
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual javax.swing.text.ZoneView.getView:(I)Ljavax/swing/text/View;
            astore 4 /* v */
        start local 4 // javax.swing.text.View v
         6: .line 258
            iload 1 /* pos */
            aload 4 /* v */
            invokevirtual javax.swing.text.View.getStartOffset:()I
            if_icmplt 9
         7: .line 259
            iload 1 /* pos */
            aload 4 /* v */
            invokevirtual javax.swing.text.View.getEndOffset:()I
            if_icmpge 9
         8: .line 260
            iload 3 /* i */
            ireturn
        end local 4 // javax.swing.text.View v
         9: .line 256
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            iload 2 /* n */
            if_icmplt 5
        end local 3 // int i
        11: .line 263
            iconst_m1
            ireturn
        end local 2 // int n
        end local 1 // int pos
        end local 0 // javax.swing.text.ZoneView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Ljavax/swing/text/ZoneView;
            0   12     1   pos  I
            1   12     2     n  I
            4   11     3     i  I
            6    9     4     v  Ljavax/swing/text/View;
    MethodParameters:
      Name  Flags
      pos   

  void handleInsert(int, int);
    descriptor: (II)V
    flags: (0x0000) 
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // javax.swing.text.ZoneView this
        start local 1 // int pos
        start local 2 // int length
         0: .line 267
            aload 0 /* this */
            iload 1 /* pos */
            getstatic javax.swing.text.Position$Bias.Forward:Ljavax/swing/text/Position$Bias;
            invokevirtual javax.swing.text.ZoneView.getViewIndex:(ILjavax/swing/text/Position$Bias;)I
            istore 3 /* index */
        start local 3 // int index
         1: .line 268
            aload 0 /* this */
            iload 3 /* index */
            invokevirtual javax.swing.text.ZoneView.getView:(I)Ljavax/swing/text/View;
            astore 4 /* v */
        start local 4 // javax.swing.text.View v
         2: .line 269
            aload 4 /* v */
            invokevirtual javax.swing.text.View.getStartOffset:()I
            istore 5 /* offs0 */
        start local 5 // int offs0
         3: .line 270
            aload 4 /* v */
            invokevirtual javax.swing.text.View.getEndOffset:()I
            istore 6 /* offs1 */
        start local 6 // int offs1
         4: .line 271
            iload 6 /* offs1 */
            iload 5 /* offs0 */
            isub
            aload 0 /* this */
            getfield javax.swing.text.ZoneView.maxZoneSize:I
            if_icmple 6
         5: .line 272
            aload 0 /* this */
            iload 3 /* index */
            iload 5 /* offs0 */
            iload 6 /* offs1 */
            invokevirtual javax.swing.text.ZoneView.splitZone:(III)V
         6: .line 274
      StackMap locals: javax.swing.text.ZoneView int int int javax.swing.text.View int int
      StackMap stack:
            return
        end local 6 // int offs1
        end local 5 // int offs0
        end local 4 // javax.swing.text.View v
        end local 3 // int index
        end local 2 // int length
        end local 1 // int pos
        end local 0 // javax.swing.text.ZoneView this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Ljavax/swing/text/ZoneView;
            0    7     1     pos  I
            0    7     2  length  I
            1    7     3   index  I
            2    7     4       v  Ljavax/swing/text/View;
            3    7     5   offs0  I
            4    7     6   offs1  I
    MethodParameters:
        Name  Flags
      pos     
      length  

  void handleRemove(int, int);
    descriptor: (II)V
    flags: (0x0000) 
    Code:
      stack=0, locals=3, args_size=3
        start local 0 // javax.swing.text.ZoneView this
        start local 1 // int pos
        start local 2 // int length
         0: .line 278
            return
        end local 2 // int length
        end local 1 // int pos
        end local 0 // javax.swing.text.ZoneView this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Ljavax/swing/text/ZoneView;
            0    1     1     pos  I
            0    1     2  length  I
    MethodParameters:
        Name  Flags
      pos     
      length  

  void splitZone(int, int, int);
    descriptor: (III)V
    flags: (0x0000) 
    Code:
      stack=4, locals=8, args_size=4
        start local 0 // javax.swing.text.ZoneView this
        start local 1 // int index
        start local 2 // int offs0
        start local 3 // int offs1
         0: .line 286
            aload 0 /* this */
            invokevirtual javax.swing.text.ZoneView.getElement:()Ljavax/swing/text/Element;
            astore 4 /* elem */
        start local 4 // javax.swing.text.Element elem
         1: .line 287
            aload 4 /* elem */
            invokeinterface javax.swing.text.Element.getDocument:()Ljavax/swing/text/Document;
            pop
         2: .line 288
            new java.util.Vector
            dup
            invokespecial java.util.Vector.<init>:()V
            astore 5 /* zones */
        start local 5 // java.util.Vector zones
         3: .line 289
            iload 2 /* offs0 */
            istore 6 /* offs */
        start local 6 // int offs
         4: .line 291
      StackMap locals: javax.swing.text.Element java.util.Vector int
      StackMap stack:
            iload 6 /* offs */
            istore 2 /* offs0 */
         5: .line 292
            aload 0 /* this */
            iload 2 /* offs0 */
            invokevirtual javax.swing.text.ZoneView.getDesiredZoneEnd:(I)I
            iload 3 /* offs1 */
            invokestatic java.lang.Math.min:(II)I
            istore 6 /* offs */
         6: .line 293
            aload 5 /* zones */
            aload 0 /* this */
            iload 2 /* offs0 */
            iload 6 /* offs */
            invokevirtual javax.swing.text.ZoneView.createZone:(II)Ljavax/swing/text/View;
            invokevirtual java.util.Vector.addElement:(Ljava/lang/Object;)V
         7: .line 294
            iload 6 /* offs */
            iload 3 /* offs1 */
         8: .line 290
            if_icmplt 4
         9: .line 295
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual javax.swing.text.ZoneView.getView:(I)Ljavax/swing/text/View;
            pop
        10: .line 296
            aload 5 /* zones */
            invokevirtual java.util.Vector.size:()I
            anewarray javax.swing.text.View
            astore 7 /* newZones */
        start local 7 // javax.swing.text.View[] newZones
        11: .line 297
            aload 5 /* zones */
            aload 7 /* newZones */
            invokevirtual java.util.Vector.copyInto:([Ljava/lang/Object;)V
        12: .line 298
            aload 0 /* this */
            iload 1 /* index */
            iconst_1
            aload 7 /* newZones */
            invokevirtual javax.swing.text.ZoneView.replace:(II[Ljavax/swing/text/View;)V
        13: .line 299
            return
        end local 7 // javax.swing.text.View[] newZones
        end local 6 // int offs
        end local 5 // java.util.Vector zones
        end local 4 // javax.swing.text.Element elem
        end local 3 // int offs1
        end local 2 // int offs0
        end local 1 // int index
        end local 0 // javax.swing.text.ZoneView this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Ljavax/swing/text/ZoneView;
            0   14     1     index  I
            0   14     2     offs0  I
            0   14     3     offs1  I
            1   14     4      elem  Ljavax/swing/text/Element;
            3   14     5     zones  Ljava/util/Vector<Ljavax/swing/text/View;>;
            4   14     6      offs  I
           11   14     7  newZones  [Ljavax/swing/text/View;
    MethodParameters:
       Name  Flags
      index  
      offs0  
      offs1  

  int getDesiredZoneEnd(int);
    descriptor: (I)I
    flags: (0x0000) 
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // javax.swing.text.ZoneView this
        start local 1 // int pos
         0: .line 308
            aload 0 /* this */
            invokevirtual javax.swing.text.ZoneView.getElement:()Ljavax/swing/text/Element;
            astore 2 /* elem */
        start local 2 // javax.swing.text.Element elem
         1: .line 309
            aload 2 /* elem */
            iload 1 /* pos */
            aload 0 /* this */
            getfield javax.swing.text.ZoneView.maxZoneSize:I
            iconst_2
            idiv
            iadd
            invokeinterface javax.swing.text.Element.getElementIndex:(I)I
            istore 3 /* index */
        start local 3 // int index
         2: .line 310
            aload 2 /* elem */
            iload 3 /* index */
            invokeinterface javax.swing.text.Element.getElement:(I)Ljavax/swing/text/Element;
            astore 4 /* child */
        start local 4 // javax.swing.text.Element child
         3: .line 311
            aload 4 /* child */
            invokeinterface javax.swing.text.Element.getStartOffset:()I
            istore 5 /* offs0 */
        start local 5 // int offs0
         4: .line 312
            aload 4 /* child */
            invokeinterface javax.swing.text.Element.getEndOffset:()I
            istore 6 /* offs1 */
        start local 6 // int offs1
         5: .line 313
            iload 6 /* offs1 */
            iload 1 /* pos */
            isub
            aload 0 /* this */
            getfield javax.swing.text.ZoneView.maxZoneSize:I
            if_icmple 8
         6: .line 314
            iload 5 /* offs0 */
            iload 1 /* pos */
            if_icmple 8
         7: .line 315
            iload 5 /* offs0 */
            ireturn
         8: .line 318
      StackMap locals: javax.swing.text.ZoneView int javax.swing.text.Element int javax.swing.text.Element int int
      StackMap stack:
            iload 6 /* offs1 */
            ireturn
        end local 6 // int offs1
        end local 5 // int offs0
        end local 4 // javax.swing.text.Element child
        end local 3 // int index
        end local 2 // javax.swing.text.Element elem
        end local 1 // int pos
        end local 0 // javax.swing.text.ZoneView this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Ljavax/swing/text/ZoneView;
            0    9     1    pos  I
            1    9     2   elem  Ljavax/swing/text/Element;
            2    9     3  index  I
            3    9     4  child  Ljavax/swing/text/Element;
            4    9     5  offs0  I
            5    9     6  offs1  I
    MethodParameters:
      Name  Flags
      pos   

  protected boolean updateChildren(javax.swing.event.DocumentEvent$ElementChange, javax.swing.event.DocumentEvent, javax.swing.text.ViewFactory);
    descriptor: (Ljavax/swing/event/DocumentEvent$ElementChange;Ljavax/swing/event/DocumentEvent;Ljavax/swing/text/ViewFactory;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=4, args_size=4
        start local 0 // javax.swing.text.ZoneView this
        start local 1 // javax.swing.event.DocumentEvent$ElementChange ec
        start local 2 // javax.swing.event.DocumentEvent e
        start local 3 // javax.swing.text.ViewFactory f
         0: .line 332
            iconst_0
            ireturn
        end local 3 // javax.swing.text.ViewFactory f
        end local 2 // javax.swing.event.DocumentEvent e
        end local 1 // javax.swing.event.DocumentEvent$ElementChange ec
        end local 0 // javax.swing.text.ZoneView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/ZoneView;
            0    1     1    ec  Ljavax/swing/event/DocumentEvent$ElementChange;
            0    1     2     e  Ljavax/swing/event/DocumentEvent;
            0    1     3     f  Ljavax/swing/text/ViewFactory;
    MethodParameters:
      Name  Flags
      ec    
      e     
      f     

  public void insertUpdate(javax.swing.event.DocumentEvent, java.awt.Shape, javax.swing.text.ViewFactory);
    descriptor: (Ljavax/swing/event/DocumentEvent;Ljava/awt/Shape;Ljavax/swing/text/ViewFactory;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // javax.swing.text.ZoneView this
        start local 1 // javax.swing.event.DocumentEvent changes
        start local 2 // java.awt.Shape a
        start local 3 // javax.swing.text.ViewFactory f
         0: .line 348
            aload 0 /* this */
            aload 1 /* changes */
            invokeinterface javax.swing.event.DocumentEvent.getOffset:()I
            aload 1 /* changes */
            invokeinterface javax.swing.event.DocumentEvent.getLength:()I
            invokevirtual javax.swing.text.ZoneView.handleInsert:(II)V
         1: .line 349
            aload 0 /* this */
            aload 1 /* changes */
            aload 2 /* a */
            aload 3 /* f */
            invokespecial javax.swing.text.BoxView.insertUpdate:(Ljavax/swing/event/DocumentEvent;Ljava/awt/Shape;Ljavax/swing/text/ViewFactory;)V
         2: .line 350
            return
        end local 3 // javax.swing.text.ViewFactory f
        end local 2 // java.awt.Shape a
        end local 1 // javax.swing.event.DocumentEvent changes
        end local 0 // javax.swing.text.ZoneView this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Ljavax/swing/text/ZoneView;
            0    3     1  changes  Ljavax/swing/event/DocumentEvent;
            0    3     2        a  Ljava/awt/Shape;
            0    3     3        f  Ljavax/swing/text/ViewFactory;
    MethodParameters:
         Name  Flags
      changes  
      a        
      f        

  public void removeUpdate(javax.swing.event.DocumentEvent, java.awt.Shape, javax.swing.text.ViewFactory);
    descriptor: (Ljavax/swing/event/DocumentEvent;Ljava/awt/Shape;Ljavax/swing/text/ViewFactory;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // javax.swing.text.ZoneView this
        start local 1 // javax.swing.event.DocumentEvent changes
        start local 2 // java.awt.Shape a
        start local 3 // javax.swing.text.ViewFactory f
         0: .line 365
            aload 0 /* this */
            aload 1 /* changes */
            invokeinterface javax.swing.event.DocumentEvent.getOffset:()I
            aload 1 /* changes */
            invokeinterface javax.swing.event.DocumentEvent.getLength:()I
            invokevirtual javax.swing.text.ZoneView.handleRemove:(II)V
         1: .line 366
            aload 0 /* this */
            aload 1 /* changes */
            aload 2 /* a */
            aload 3 /* f */
            invokespecial javax.swing.text.BoxView.removeUpdate:(Ljavax/swing/event/DocumentEvent;Ljava/awt/Shape;Ljavax/swing/text/ViewFactory;)V
         2: .line 367
            return
        end local 3 // javax.swing.text.ViewFactory f
        end local 2 // java.awt.Shape a
        end local 1 // javax.swing.event.DocumentEvent changes
        end local 0 // javax.swing.text.ZoneView this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Ljavax/swing/text/ZoneView;
            0    3     1  changes  Ljavax/swing/event/DocumentEvent;
            0    3     2        a  Ljava/awt/Shape;
            0    3     3        f  Ljavax/swing/text/ViewFactory;
    MethodParameters:
         Name  Flags
      changes  
      a        
      f        
}
SourceFile: "ZoneView.java"
NestMembers:
  javax.swing.text.ZoneView$Zone
InnerClasses:
  public abstract ElementChange = javax.swing.event.DocumentEvent$ElementChange of javax.swing.event.DocumentEvent
  public final Bias = javax.swing.text.Position$Bias of javax.swing.text.Position
  Zone = javax.swing.text.ZoneView$Zone of javax.swing.text.ZoneView