public class javax.swing.text.WrappedPlainView extends javax.swing.text.BoxView implements javax.swing.text.TabExpander
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: javax.swing.text.WrappedPlainView
  super_class: javax.swing.text.BoxView
{
  java.awt.FontMetrics metrics;
    descriptor: Ljava/awt/FontMetrics;
    flags: (0x0000) 

  javax.swing.text.Segment lineBuffer;
    descriptor: Ljavax/swing/text/Segment;
    flags: (0x0000) 

  boolean widthChanging;
    descriptor: Z
    flags: (0x0000) 

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

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

  boolean wordWrap;
    descriptor: Z
    flags: (0x0000) 

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

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

  java.awt.Color unselected;
    descriptor: Ljava/awt/Color;
    flags: (0x0000) 

  java.awt.Color selected;
    descriptor: Ljava/awt/Color;
    flags: (0x0000) 

  public void <init>(javax.swing.text.Element);
    descriptor: (Ljavax/swing/text/Element;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javax.swing.text.WrappedPlainView this
        start local 1 // javax.swing.text.Element elem
         0: .line 62
            aload 0 /* this */
            aload 1 /* elem */
            iconst_0
            invokespecial javax.swing.text.WrappedPlainView.<init>:(Ljavax/swing/text/Element;Z)V
         1: .line 63
            return
        end local 1 // javax.swing.text.Element elem
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/text/WrappedPlainView;
            0    2     1  elem  Ljavax/swing/text/Element;
    MethodParameters:
      Name  Flags
      elem  

  public void <init>(javax.swing.text.Element, boolean);
    descriptor: (Ljavax/swing/text/Element;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // javax.swing.text.WrappedPlainView this
        start local 1 // javax.swing.text.Element elem
        start local 2 // boolean wordWrap
         0: .line 74
            aload 0 /* this */
            aload 1 /* elem */
            iconst_1
            invokespecial javax.swing.text.BoxView.<init>:(Ljavax/swing/text/Element;I)V
         1: .line 75
            aload 0 /* this */
            iload 2 /* wordWrap */
            putfield javax.swing.text.WrappedPlainView.wordWrap:Z
         2: .line 76
            return
        end local 2 // boolean wordWrap
        end local 1 // javax.swing.text.Element elem
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Ljavax/swing/text/WrappedPlainView;
            0    3     1      elem  Ljavax/swing/text/Element;
            0    3     2  wordWrap  Z
    MethodParameters:
          Name  Flags
      elem      
      wordWrap  

  protected int getTabSize();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // javax.swing.text.WrappedPlainView this
         0: .line 84
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.getDocument:()Ljavax/swing/text/Document;
            ldc "tabSize"
            invokeinterface javax.swing.text.Document.getProperty:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Integer
            astore 1 /* i */
        start local 1 // java.lang.Integer i
         1: .line 85
            aload 1 /* i */
            ifnull 2
            aload 1 /* i */
            invokevirtual java.lang.Integer.intValue:()I
            goto 3
      StackMap locals: java.lang.Integer
      StackMap stack:
         2: bipush 8
      StackMap locals:
      StackMap stack: int
         3: istore 2 /* size */
        start local 2 // int size
         4: .line 86
            iload 2 /* size */
            ireturn
        end local 2 // int size
        end local 1 // java.lang.Integer i
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljavax/swing/text/WrappedPlainView;
            1    5     1     i  Ljava/lang/Integer;
            4    5     2  size  I

  protected void drawLine(int, int, java.awt.Graphics, int, int);
    descriptor: (IILjava/awt/Graphics;II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=13, args_size=6
        start local 0 // javax.swing.text.WrappedPlainView this
        start local 1 // int p0
        start local 2 // int p1
        start local 3 // java.awt.Graphics g
        start local 4 // int x
        start local 5 // int y
         0: .line 105
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.getElement:()Ljavax/swing/text/Element;
            astore 6 /* lineMap */
        start local 6 // javax.swing.text.Element lineMap
         1: .line 106
            aload 6 /* lineMap */
            aload 6 /* lineMap */
            iload 1 /* p0 */
            invokeinterface javax.swing.text.Element.getElementIndex:(I)I
            invokeinterface javax.swing.text.Element.getElement:(I)Ljavax/swing/text/Element;
            astore 7 /* line */
        start local 7 // javax.swing.text.Element line
         2: .line 110
            aload 7 /* line */
            invokeinterface javax.swing.text.Element.isLeaf:()Z
            ifeq 5
         3: .line 111
            aload 0 /* this */
            aload 7 /* line */
            iload 1 /* p0 */
            iload 2 /* p1 */
            aload 3 /* g */
            iload 4 /* x */
            iload 5 /* y */
            invokevirtual javax.swing.text.WrappedPlainView.drawText:(Ljavax/swing/text/Element;IILjava/awt/Graphics;II)I
            pop
         4: .line 112
            goto 17
         5: .line 114
      StackMap locals: javax.swing.text.Element javax.swing.text.Element
      StackMap stack:
            aload 7 /* line */
            iload 1 /* p0 */
            invokeinterface javax.swing.text.Element.getElementIndex:(I)I
            istore 9 /* idx */
        start local 9 // int idx
         6: .line 115
            aload 7 /* line */
            iload 2 /* p1 */
            invokeinterface javax.swing.text.Element.getElementIndex:(I)I
            istore 10 /* lastIdx */
        start local 10 // int lastIdx
         7: .line 116
            goto 13
         8: .line 117
      StackMap locals: javax.swing.text.WrappedPlainView int int java.awt.Graphics int int javax.swing.text.Element javax.swing.text.Element top int int
      StackMap stack:
            aload 7 /* line */
            iload 9 /* idx */
            invokeinterface javax.swing.text.Element.getElement:(I)Ljavax/swing/text/Element;
            astore 8 /* elem */
        start local 8 // javax.swing.text.Element elem
         9: .line 118
            aload 8 /* elem */
            invokeinterface javax.swing.text.Element.getStartOffset:()I
            iload 1 /* p0 */
            invokestatic java.lang.Math.max:(II)I
            istore 11 /* start */
        start local 11 // int start
        10: .line 119
            aload 8 /* elem */
            invokeinterface javax.swing.text.Element.getEndOffset:()I
            iload 2 /* p1 */
            invokestatic java.lang.Math.min:(II)I
            istore 12 /* end */
        start local 12 // int end
        11: .line 120
            aload 0 /* this */
            aload 8 /* elem */
            iload 11 /* start */
            iload 12 /* end */
            aload 3 /* g */
            iload 4 /* x */
            iload 5 /* y */
            invokevirtual javax.swing.text.WrappedPlainView.drawText:(Ljavax/swing/text/Element;IILjava/awt/Graphics;II)I
            istore 4 /* x */
        end local 12 // int end
        end local 11 // int start
        12: .line 116
            iinc 9 /* idx */ 1
        end local 8 // javax.swing.text.Element elem
      StackMap locals:
      StackMap stack:
        13: iload 9 /* idx */
            iload 10 /* lastIdx */
            if_icmple 8
        end local 10 // int lastIdx
        end local 9 // int idx
        14: .line 123
            goto 17
      StackMap locals: javax.swing.text.WrappedPlainView int int java.awt.Graphics int int javax.swing.text.Element javax.swing.text.Element
      StackMap stack: javax.swing.text.BadLocationException
        15: pop
        16: .line 124
            new javax.swing.text.StateInvariantError
            dup
            new java.lang.StringBuilder
            dup
            ldc "Can't render: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* p0 */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ","
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 2 /* p1 */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial javax.swing.text.StateInvariantError.<init>:(Ljava/lang/String;)V
            athrow
        17: .line 126
      StackMap locals:
      StackMap stack:
            return
        end local 7 // javax.swing.text.Element line
        end local 6 // javax.swing.text.Element lineMap
        end local 5 // int y
        end local 4 // int x
        end local 3 // java.awt.Graphics g
        end local 2 // int p1
        end local 1 // int p0
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   18     0     this  Ljavax/swing/text/WrappedPlainView;
            0   18     1       p0  I
            0   18     2       p1  I
            0   18     3        g  Ljava/awt/Graphics;
            0   18     4        x  I
            0   18     5        y  I
            1   18     6  lineMap  Ljavax/swing/text/Element;
            2   18     7     line  Ljavax/swing/text/Element;
            9   13     8     elem  Ljavax/swing/text/Element;
            6   14     9      idx  I
            7   14    10  lastIdx  I
           10   12    11    start  I
           11   12    12      end  I
      Exception table:
        from    to  target  type
           2    14      15  Class javax.swing.text.BadLocationException
    MethodParameters:
      Name  Flags
      p0    
      p1    
      g     
      x     
      y     

  private int drawText(javax.swing.text.Element, int, int, java.awt.Graphics, int, int);
    descriptor: (Ljavax/swing/text/Element;IILjava/awt/Graphics;II)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=8, args_size=7
        start local 0 // javax.swing.text.WrappedPlainView this
        start local 1 // javax.swing.text.Element elem
        start local 2 // int p0
        start local 3 // int p1
        start local 4 // java.awt.Graphics g
        start local 5 // int x
        start local 6 // int y
         0: .line 129
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.getDocument:()Ljavax/swing/text/Document;
            invokeinterface javax.swing.text.Document.getLength:()I
            iload 3 /* p1 */
            invokestatic java.lang.Math.min:(II)I
            istore 3 /* p1 */
         1: .line 130
            aload 1 /* elem */
            invokeinterface javax.swing.text.Element.getAttributes:()Ljavax/swing/text/AttributeSet;
            astore 7 /* attr */
        start local 7 // javax.swing.text.AttributeSet attr
         2: .line 132
            aload 7 /* attr */
            invokestatic javax.swing.text.Utilities.isComposedTextAttributeDefined:(Ljavax/swing/text/AttributeSet;)Z
            ifeq 9
         3: .line 133
            aload 4 /* g */
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.unselected:Ljava/awt/Color;
            invokevirtual java.awt.Graphics.setColor:(Ljava/awt/Color;)V
         4: .line 134
            aload 0 /* this */
            aload 7 /* attr */
            aload 4 /* g */
            iload 5 /* x */
            iload 6 /* y */
         5: .line 135
            iload 2 /* p0 */
            aload 1 /* elem */
            invokeinterface javax.swing.text.Element.getStartOffset:()I
            isub
         6: .line 136
            iload 3 /* p1 */
            aload 1 /* elem */
            invokeinterface javax.swing.text.Element.getStartOffset:()I
            isub
         7: .line 134
            invokestatic javax.swing.text.Utilities.drawComposedText:(Ljavax/swing/text/View;Ljavax/swing/text/AttributeSet;Ljava/awt/Graphics;IIII)I
            istore 5 /* x */
         8: .line 137
            goto 29
         9: .line 138
      StackMap locals: javax.swing.text.AttributeSet
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.sel0:I
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.sel1:I
            if_icmpeq 10
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.selected:Ljava/awt/Color;
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.unselected:Ljava/awt/Color;
            if_acmpne 12
        10: .line 140
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* g */
            iload 5 /* x */
            iload 6 /* y */
            iload 2 /* p0 */
            iload 3 /* p1 */
            invokevirtual javax.swing.text.WrappedPlainView.drawUnselectedText:(Ljava/awt/Graphics;IIII)I
            istore 5 /* x */
        11: .line 141
            goto 29
      StackMap locals:
      StackMap stack:
        12: iload 2 /* p0 */
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.sel0:I
            if_icmplt 15
            iload 2 /* p0 */
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.sel1:I
            if_icmpgt 15
            iload 3 /* p1 */
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.sel0:I
            if_icmplt 15
            iload 3 /* p1 */
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.sel1:I
            if_icmpgt 15
        13: .line 142
            aload 0 /* this */
            aload 4 /* g */
            iload 5 /* x */
            iload 6 /* y */
            iload 2 /* p0 */
            iload 3 /* p1 */
            invokevirtual javax.swing.text.WrappedPlainView.drawSelectedText:(Ljava/awt/Graphics;IIII)I
            istore 5 /* x */
        14: .line 143
            goto 29
      StackMap locals:
      StackMap stack:
        15: aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.sel0:I
            iload 2 /* p0 */
            if_icmplt 24
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.sel0:I
            iload 3 /* p1 */
            if_icmpgt 24
        16: .line 144
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.sel1:I
            iload 2 /* p0 */
            if_icmplt 21
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.sel1:I
            iload 3 /* p1 */
            if_icmpgt 21
        17: .line 145
            aload 0 /* this */
            aload 4 /* g */
            iload 5 /* x */
            iload 6 /* y */
            iload 2 /* p0 */
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.sel0:I
            invokevirtual javax.swing.text.WrappedPlainView.drawUnselectedText:(Ljava/awt/Graphics;IIII)I
            istore 5 /* x */
        18: .line 146
            aload 0 /* this */
            aload 4 /* g */
            iload 5 /* x */
            iload 6 /* y */
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.sel0:I
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.sel1:I
            invokevirtual javax.swing.text.WrappedPlainView.drawSelectedText:(Ljava/awt/Graphics;IIII)I
            istore 5 /* x */
        19: .line 147
            aload 0 /* this */
            aload 4 /* g */
            iload 5 /* x */
            iload 6 /* y */
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.sel1:I
            iload 3 /* p1 */
            invokevirtual javax.swing.text.WrappedPlainView.drawUnselectedText:(Ljava/awt/Graphics;IIII)I
            istore 5 /* x */
        20: .line 148
            goto 29
        21: .line 149
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* g */
            iload 5 /* x */
            iload 6 /* y */
            iload 2 /* p0 */
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.sel0:I
            invokevirtual javax.swing.text.WrappedPlainView.drawUnselectedText:(Ljava/awt/Graphics;IIII)I
            istore 5 /* x */
        22: .line 150
            aload 0 /* this */
            aload 4 /* g */
            iload 5 /* x */
            iload 6 /* y */
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.sel0:I
            iload 3 /* p1 */
            invokevirtual javax.swing.text.WrappedPlainView.drawSelectedText:(Ljava/awt/Graphics;IIII)I
            istore 5 /* x */
        23: .line 152
            goto 29
      StackMap locals:
      StackMap stack:
        24: aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.sel1:I
            iload 2 /* p0 */
            if_icmplt 28
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.sel1:I
            iload 3 /* p1 */
            if_icmpgt 28
        25: .line 153
            aload 0 /* this */
            aload 4 /* g */
            iload 5 /* x */
            iload 6 /* y */
            iload 2 /* p0 */
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.sel1:I
            invokevirtual javax.swing.text.WrappedPlainView.drawSelectedText:(Ljava/awt/Graphics;IIII)I
            istore 5 /* x */
        26: .line 154
            aload 0 /* this */
            aload 4 /* g */
            iload 5 /* x */
            iload 6 /* y */
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.sel1:I
            iload 3 /* p1 */
            invokevirtual javax.swing.text.WrappedPlainView.drawUnselectedText:(Ljava/awt/Graphics;IIII)I
            istore 5 /* x */
        27: .line 155
            goto 29
        28: .line 156
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* g */
            iload 5 /* x */
            iload 6 /* y */
            iload 2 /* p0 */
            iload 3 /* p1 */
            invokevirtual javax.swing.text.WrappedPlainView.drawUnselectedText:(Ljava/awt/Graphics;IIII)I
            istore 5 /* x */
        29: .line 160
      StackMap locals:
      StackMap stack:
            iload 5 /* x */
            ireturn
        end local 7 // javax.swing.text.AttributeSet attr
        end local 6 // int y
        end local 5 // int x
        end local 4 // java.awt.Graphics g
        end local 3 // int p1
        end local 2 // int p0
        end local 1 // javax.swing.text.Element elem
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   30     0  this  Ljavax/swing/text/WrappedPlainView;
            0   30     1  elem  Ljavax/swing/text/Element;
            0   30     2    p0  I
            0   30     3    p1  I
            0   30     4     g  Ljava/awt/Graphics;
            0   30     5     x  I
            0   30     6     y  I
            2   30     7  attr  Ljavax/swing/text/AttributeSet;
    Exceptions:
      throws javax.swing.text.BadLocationException
    MethodParameters:
      Name  Flags
      elem  
      p0    
      p1    
      g     
      x     
      y     

  protected int drawUnselectedText(java.awt.Graphics, int, int, int, int);
    descriptor: (Ljava/awt/Graphics;IIII)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=9, args_size=6
        start local 0 // javax.swing.text.WrappedPlainView this
        start local 1 // java.awt.Graphics g
        start local 2 // int x
        start local 3 // int y
        start local 4 // int p0
        start local 5 // int p1
         0: .line 177
            aload 1 /* g */
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.unselected:Ljava/awt/Color;
            invokevirtual java.awt.Graphics.setColor:(Ljava/awt/Color;)V
         1: .line 178
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.getDocument:()Ljavax/swing/text/Document;
            astore 6 /* doc */
        start local 6 // javax.swing.text.Document doc
         2: .line 179
            invokestatic javax.swing.text.SegmentCache.getSharedSegment:()Ljavax/swing/text/Segment;
            astore 7 /* segment */
        start local 7 // javax.swing.text.Segment segment
         3: .line 180
            aload 6 /* doc */
            iload 4 /* p0 */
            iload 5 /* p1 */
            iload 4 /* p0 */
            isub
            aload 7 /* segment */
            invokeinterface javax.swing.text.Document.getText:(IILjavax/swing/text/Segment;)V
         4: .line 181
            aload 0 /* this */
            aload 7 /* segment */
            iload 2 /* x */
            iload 3 /* y */
            aload 1 /* g */
            aload 0 /* this */
            iload 4 /* p0 */
            invokestatic javax.swing.text.Utilities.drawTabbedText:(Ljavax/swing/text/View;Ljavax/swing/text/Segment;IILjava/awt/Graphics;Ljavax/swing/text/TabExpander;I)I
            istore 8 /* ret */
        start local 8 // int ret
         5: .line 182
            aload 7 /* segment */
            invokestatic javax.swing.text.SegmentCache.releaseSharedSegment:(Ljavax/swing/text/Segment;)V
         6: .line 183
            iload 8 /* ret */
            ireturn
        end local 8 // int ret
        end local 7 // javax.swing.text.Segment segment
        end local 6 // javax.swing.text.Document doc
        end local 5 // int p1
        end local 4 // int p0
        end local 3 // int y
        end local 2 // int x
        end local 1 // java.awt.Graphics g
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Ljavax/swing/text/WrappedPlainView;
            0    7     1        g  Ljava/awt/Graphics;
            0    7     2        x  I
            0    7     3        y  I
            0    7     4       p0  I
            0    7     5       p1  I
            2    7     6      doc  Ljavax/swing/text/Document;
            3    7     7  segment  Ljavax/swing/text/Segment;
            5    7     8      ret  I
    Exceptions:
      throws javax.swing.text.BadLocationException
    MethodParameters:
      Name  Flags
      g     
      x     
      y     
      p0    
      p1    

  protected int drawSelectedText(java.awt.Graphics, int, int, int, int);
    descriptor: (Ljava/awt/Graphics;IIII)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=9, args_size=6
        start local 0 // javax.swing.text.WrappedPlainView this
        start local 1 // java.awt.Graphics g
        start local 2 // int x
        start local 3 // int y
        start local 4 // int p0
        start local 5 // int p1
         0: .line 202
            aload 1 /* g */
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.selected:Ljava/awt/Color;
            invokevirtual java.awt.Graphics.setColor:(Ljava/awt/Color;)V
         1: .line 203
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.getDocument:()Ljavax/swing/text/Document;
            astore 6 /* doc */
        start local 6 // javax.swing.text.Document doc
         2: .line 204
            invokestatic javax.swing.text.SegmentCache.getSharedSegment:()Ljavax/swing/text/Segment;
            astore 7 /* segment */
        start local 7 // javax.swing.text.Segment segment
         3: .line 205
            aload 6 /* doc */
            iload 4 /* p0 */
            iload 5 /* p1 */
            iload 4 /* p0 */
            isub
            aload 7 /* segment */
            invokeinterface javax.swing.text.Document.getText:(IILjavax/swing/text/Segment;)V
         4: .line 206
            aload 0 /* this */
            aload 7 /* segment */
            iload 2 /* x */
            iload 3 /* y */
            aload 1 /* g */
            aload 0 /* this */
            iload 4 /* p0 */
            invokestatic javax.swing.text.Utilities.drawTabbedText:(Ljavax/swing/text/View;Ljavax/swing/text/Segment;IILjava/awt/Graphics;Ljavax/swing/text/TabExpander;I)I
            istore 8 /* ret */
        start local 8 // int ret
         5: .line 207
            aload 7 /* segment */
            invokestatic javax.swing.text.SegmentCache.releaseSharedSegment:(Ljavax/swing/text/Segment;)V
         6: .line 208
            iload 8 /* ret */
            ireturn
        end local 8 // int ret
        end local 7 // javax.swing.text.Segment segment
        end local 6 // javax.swing.text.Document doc
        end local 5 // int p1
        end local 4 // int p0
        end local 3 // int y
        end local 2 // int x
        end local 1 // java.awt.Graphics g
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Ljavax/swing/text/WrappedPlainView;
            0    7     1        g  Ljava/awt/Graphics;
            0    7     2        x  I
            0    7     3        y  I
            0    7     4       p0  I
            0    7     5       p1  I
            2    7     6      doc  Ljavax/swing/text/Document;
            3    7     7  segment  Ljavax/swing/text/Segment;
            5    7     8      ret  I
    Exceptions:
      throws javax.swing.text.BadLocationException
    MethodParameters:
      Name  Flags
      g     
      x     
      y     
      p0    
      p1    

  protected final javax.swing.text.Segment getLineBuffer();
    descriptor: ()Ljavax/swing/text/Segment;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javax.swing.text.WrappedPlainView this
         0: .line 218
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.lineBuffer:Ljavax/swing/text/Segment;
            ifnonnull 2
         1: .line 219
            aload 0 /* this */
            new javax.swing.text.Segment
            dup
            invokespecial javax.swing.text.Segment.<init>:()V
            putfield javax.swing.text.WrappedPlainView.lineBuffer:Ljavax/swing/text/Segment;
         2: .line 221
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.lineBuffer:Ljavax/swing/text/Segment;
            areturn
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavax/swing/text/WrappedPlainView;

  protected int calculateBreakPosition(int, int);
    descriptor: (II)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=8, locals=6, args_size=3
        start local 0 // javax.swing.text.WrappedPlainView this
        start local 1 // int p0
        start local 2 // int p1
         0: .line 234
            invokestatic javax.swing.text.SegmentCache.getSharedSegment:()Ljavax/swing/text/Segment;
            astore 4 /* segment */
        start local 4 // javax.swing.text.Segment segment
         1: .line 235
            aload 0 /* this */
            aload 4 /* segment */
            iload 1 /* p0 */
            iload 2 /* p1 */
            invokevirtual javax.swing.text.WrappedPlainView.loadText:(Ljavax/swing/text/Segment;II)V
         2: .line 236
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.getWidth:()I
            istore 5 /* currentWidth */
        start local 5 // int currentWidth
         3: .line 237
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.wordWrap:Z
            ifeq 9
         4: .line 238
            iload 1 /* p0 */
            aload 4 /* segment */
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.metrics:Ljava/awt/FontMetrics;
         5: .line 239
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.tabBase:I
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.tabBase:I
            iload 5 /* currentWidth */
            iadd
         6: .line 240
            aload 0 /* this */
            iload 1 /* p0 */
         7: .line 238
            invokestatic javax.swing.text.Utilities.getBreakLocation:(Ljavax/swing/text/Segment;Ljava/awt/FontMetrics;IILjavax/swing/text/TabExpander;I)I
            iadd
            istore 3 /* p */
        start local 3 // int p
         8: .line 241
            goto 13
        end local 3 // int p
         9: .line 242
      StackMap locals: javax.swing.text.WrappedPlainView int int top javax.swing.text.Segment int
      StackMap stack:
            iload 1 /* p0 */
            aload 4 /* segment */
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.metrics:Ljava/awt/FontMetrics;
        10: .line 243
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.tabBase:I
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.tabBase:I
            iload 5 /* currentWidth */
            iadd
        11: .line 244
            aload 0 /* this */
            iload 1 /* p0 */
            iconst_0
        12: .line 242
            invokestatic javax.swing.text.Utilities.getTabbedTextOffset:(Ljavax/swing/text/Segment;Ljava/awt/FontMetrics;IILjavax/swing/text/TabExpander;IZ)I
            iadd
            istore 3 /* p */
        start local 3 // int p
        13: .line 246
      StackMap locals: javax.swing.text.WrappedPlainView int int int javax.swing.text.Segment int
      StackMap stack:
            aload 4 /* segment */
            invokestatic javax.swing.text.SegmentCache.releaseSharedSegment:(Ljavax/swing/text/Segment;)V
        14: .line 247
            iload 3 /* p */
            ireturn
        end local 5 // int currentWidth
        end local 4 // javax.swing.text.Segment segment
        end local 3 // int p
        end local 2 // int p1
        end local 1 // int p0
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   15     0          this  Ljavax/swing/text/WrappedPlainView;
            0   15     1            p0  I
            0   15     2            p1  I
            8    9     3             p  I
           13   15     3             p  I
            1   15     4       segment  Ljavax/swing/text/Segment;
            3   15     5  currentWidth  I
    MethodParameters:
      Name  Flags
      p0    
      p1    

  protected void loadChildren(javax.swing.text.ViewFactory);
    descriptor: (Ljavax/swing/text/ViewFactory;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=6, args_size=2
        start local 0 // javax.swing.text.WrappedPlainView this
        start local 1 // javax.swing.text.ViewFactory f
         0: .line 261
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.getElement:()Ljavax/swing/text/Element;
            astore 2 /* e */
        start local 2 // javax.swing.text.Element e
         1: .line 262
            aload 2 /* e */
            invokeinterface javax.swing.text.Element.getElementCount:()I
            istore 3 /* n */
        start local 3 // int n
         2: .line 263
            iload 3 /* n */
            ifle 10
         3: .line 264
            iload 3 /* n */
            anewarray javax.swing.text.View
            astore 4 /* added */
        start local 4 // javax.swing.text.View[] added
         4: .line 265
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         5: goto 8
         6: .line 266
      StackMap locals: javax.swing.text.WrappedPlainView javax.swing.text.ViewFactory javax.swing.text.Element int javax.swing.text.View[] int
      StackMap stack:
            aload 4 /* added */
            iload 5 /* i */
            new javax.swing.text.WrappedPlainView$WrappedLine
            dup
            aload 0 /* this */
            aload 2 /* e */
            iload 5 /* i */
            invokeinterface javax.swing.text.Element.getElement:(I)Ljavax/swing/text/Element;
            invokespecial javax.swing.text.WrappedPlainView$WrappedLine.<init>:(Ljavax/swing/text/WrappedPlainView;Ljavax/swing/text/Element;)V
            aastore
         7: .line 265
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 5 /* i */
            iload 3 /* n */
            if_icmplt 6
        end local 5 // int i
         9: .line 268
            aload 0 /* this */
            iconst_0
            iconst_0
            aload 4 /* added */
            invokevirtual javax.swing.text.WrappedPlainView.replace:(II[Ljavax/swing/text/View;)V
        end local 4 // javax.swing.text.View[] added
        10: .line 270
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int n
        end local 2 // javax.swing.text.Element e
        end local 1 // javax.swing.text.ViewFactory f
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Ljavax/swing/text/WrappedPlainView;
            0   11     1      f  Ljavax/swing/text/ViewFactory;
            1   11     2      e  Ljavax/swing/text/Element;
            2   11     3      n  I
            4   10     4  added  [Ljavax/swing/text/View;
            5    9     5      i  I
    MethodParameters:
      Name  Flags
      f     

  void updateChildren(javax.swing.event.DocumentEvent, java.awt.Shape);
    descriptor: (Ljavax/swing/event/DocumentEvent;Ljava/awt/Shape;)V
    flags: (0x0000) 
    Code:
      stack=7, locals=9, args_size=3
        start local 0 // javax.swing.text.WrappedPlainView this
        start local 1 // javax.swing.event.DocumentEvent e
        start local 2 // java.awt.Shape a
         0: .line 277
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.getElement:()Ljavax/swing/text/Element;
            astore 3 /* elem */
        start local 3 // javax.swing.text.Element elem
         1: .line 278
            aload 1 /* e */
            aload 3 /* elem */
            invokeinterface javax.swing.event.DocumentEvent.getChange:(Ljavax/swing/text/Element;)Ljavax/swing/event/DocumentEvent$ElementChange;
            astore 4 /* ec */
        start local 4 // javax.swing.event.DocumentEvent$ElementChange ec
         2: .line 279
            aload 4 /* ec */
            ifnull 15
         3: .line 281
            aload 4 /* ec */
            invokeinterface javax.swing.event.DocumentEvent$ElementChange.getChildrenRemoved:()[Ljavax/swing/text/Element;
            astore 5 /* removedElems */
        start local 5 // javax.swing.text.Element[] removedElems
         4: .line 282
            aload 4 /* ec */
            invokeinterface javax.swing.event.DocumentEvent$ElementChange.getChildrenAdded:()[Ljavax/swing/text/Element;
            astore 6 /* addedElems */
        start local 6 // javax.swing.text.Element[] addedElems
         5: .line 283
            aload 6 /* addedElems */
            arraylength
            anewarray javax.swing.text.View
            astore 7 /* added */
        start local 7 // javax.swing.text.View[] added
         6: .line 284
            iconst_0
            istore 8 /* i */
        start local 8 // int i
         7: goto 10
         8: .line 285
      StackMap locals: javax.swing.text.WrappedPlainView javax.swing.event.DocumentEvent java.awt.Shape javax.swing.text.Element javax.swing.event.DocumentEvent$ElementChange javax.swing.text.Element[] javax.swing.text.Element[] javax.swing.text.View[] int
      StackMap stack:
            aload 7 /* added */
            iload 8 /* i */
            new javax.swing.text.WrappedPlainView$WrappedLine
            dup
            aload 0 /* this */
            aload 6 /* addedElems */
            iload 8 /* i */
            aaload
            invokespecial javax.swing.text.WrappedPlainView$WrappedLine.<init>:(Ljavax/swing/text/WrappedPlainView;Ljavax/swing/text/Element;)V
            aastore
         9: .line 284
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 8 /* i */
            aload 6 /* addedElems */
            arraylength
            if_icmplt 8
        end local 8 // int i
        11: .line 287
            aload 0 /* this */
            aload 4 /* ec */
            invokeinterface javax.swing.event.DocumentEvent$ElementChange.getIndex:()I
            aload 5 /* removedElems */
            arraylength
            aload 7 /* added */
            invokevirtual javax.swing.text.WrappedPlainView.replace:(II[Ljavax/swing/text/View;)V
        12: .line 290
            aload 2 /* a */
            ifnull 15
        13: .line 291
            aload 0 /* this */
            aconst_null
            iconst_1
            iconst_1
            invokevirtual javax.swing.text.WrappedPlainView.preferenceChanged:(Ljavax/swing/text/View;ZZ)V
        14: .line 292
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.getContainer:()Ljava/awt/Container;
            invokevirtual java.awt.Container.repaint:()V
        end local 7 // javax.swing.text.View[] added
        end local 6 // javax.swing.text.Element[] addedElems
        end local 5 // javax.swing.text.Element[] removedElems
        15: .line 297
      StackMap locals: javax.swing.text.WrappedPlainView javax.swing.event.DocumentEvent java.awt.Shape javax.swing.text.Element javax.swing.event.DocumentEvent$ElementChange
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.updateMetrics:()V
        16: .line 298
            return
        end local 4 // javax.swing.event.DocumentEvent$ElementChange ec
        end local 3 // javax.swing.text.Element elem
        end local 2 // java.awt.Shape a
        end local 1 // javax.swing.event.DocumentEvent e
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   17     0          this  Ljavax/swing/text/WrappedPlainView;
            0   17     1             e  Ljavax/swing/event/DocumentEvent;
            0   17     2             a  Ljava/awt/Shape;
            1   17     3          elem  Ljavax/swing/text/Element;
            2   17     4            ec  Ljavax/swing/event/DocumentEvent$ElementChange;
            4   15     5  removedElems  [Ljavax/swing/text/Element;
            5   15     6    addedElems  [Ljavax/swing/text/Element;
            6   15     7         added  [Ljavax/swing/text/View;
            7   11     8             i  I
    MethodParameters:
      Name  Flags
      e     
      a     

  final void loadText(javax.swing.text.Segment, int, int);
    descriptor: (Ljavax/swing/text/Segment;II)V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // javax.swing.text.WrappedPlainView this
        start local 1 // javax.swing.text.Segment segment
        start local 2 // int p0
        start local 3 // int p1
         0: .line 308
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.getDocument:()Ljavax/swing/text/Document;
            astore 4 /* doc */
        start local 4 // javax.swing.text.Document doc
         1: .line 309
            aload 4 /* doc */
            iload 2 /* p0 */
            iload 3 /* p1 */
            iload 2 /* p0 */
            isub
            aload 1 /* segment */
            invokeinterface javax.swing.text.Document.getText:(IILjavax/swing/text/Segment;)V
        end local 4 // javax.swing.text.Document doc
         2: .line 310
            goto 5
      StackMap locals:
      StackMap stack: javax.swing.text.BadLocationException
         3: pop
         4: .line 311
            new javax.swing.text.StateInvariantError
            dup
            ldc "Can't get line text"
            invokespecial javax.swing.text.StateInvariantError.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 313
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int p1
        end local 2 // int p0
        end local 1 // javax.swing.text.Segment segment
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Ljavax/swing/text/WrappedPlainView;
            0    6     1  segment  Ljavax/swing/text/Segment;
            0    6     2       p0  I
            0    6     3       p1  I
            1    2     4      doc  Ljavax/swing/text/Document;
      Exception table:
        from    to  target  type
           0     2       3  Class javax.swing.text.BadLocationException
    MethodParameters:
         Name  Flags
      segment  
      p0       
      p1       

  final void updateMetrics();
    descriptor: ()V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // javax.swing.text.WrappedPlainView this
         0: .line 316
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.getContainer:()Ljava/awt/Container;
            astore 1 /* host */
        start local 1 // java.awt.Component host
         1: .line 317
            aload 1 /* host */
            invokevirtual java.awt.Component.getFont:()Ljava/awt/Font;
            astore 2 /* f */
        start local 2 // java.awt.Font f
         2: .line 318
            aload 0 /* this */
            aload 1 /* host */
            aload 2 /* f */
            invokevirtual java.awt.Component.getFontMetrics:(Ljava/awt/Font;)Ljava/awt/FontMetrics;
            putfield javax.swing.text.WrappedPlainView.metrics:Ljava/awt/FontMetrics;
         3: .line 319
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.getTabSize:()I
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.metrics:Ljava/awt/FontMetrics;
            bipush 109
            invokevirtual java.awt.FontMetrics.charWidth:(C)I
            imul
            putfield javax.swing.text.WrappedPlainView.tabSize:I
         4: .line 320
            return
        end local 2 // java.awt.Font f
        end local 1 // java.awt.Component host
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljavax/swing/text/WrappedPlainView;
            1    5     1  host  Ljava/awt/Component;
            2    5     2     f  Ljava/awt/Font;

  public float nextTabStop(float, int);
    descriptor: (FI)F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // javax.swing.text.WrappedPlainView this
        start local 1 // float x
        start local 2 // int tabOffset
         0: .line 335
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.tabSize:I
            ifne 2
         1: .line 336
            fload 1 /* x */
            freturn
         2: .line 337
      StackMap locals:
      StackMap stack:
            fload 1 /* x */
            f2i
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.tabBase:I
            isub
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.tabSize:I
            idiv
            istore 3 /* ntabs */
        start local 3 // int ntabs
         3: .line 338
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.tabBase:I
            iload 3 /* ntabs */
            iconst_1
            iadd
            aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.tabSize:I
            imul
            iadd
            i2f
            freturn
        end local 3 // int ntabs
        end local 2 // int tabOffset
        end local 1 // float x
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Ljavax/swing/text/WrappedPlainView;
            0    4     1          x  F
            0    4     2  tabOffset  I
            3    4     3      ntabs  I
    MethodParameters:
           Name  Flags
      x          
      tabOffset  

  public void paint(java.awt.Graphics, java.awt.Shape);
    descriptor: (Ljava/awt/Graphics;Ljava/awt/Shape;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // javax.swing.text.WrappedPlainView this
        start local 1 // java.awt.Graphics g
        start local 2 // java.awt.Shape a
         0: .line 356
            aload 2 /* a */
            checkcast java.awt.Rectangle
            astore 3 /* alloc */
        start local 3 // java.awt.Rectangle alloc
         1: .line 357
            aload 0 /* this */
            aload 3 /* alloc */
            getfield java.awt.Rectangle.x:I
            putfield javax.swing.text.WrappedPlainView.tabBase:I
         2: .line 358
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.getContainer:()Ljava/awt/Container;
            checkcast javax.swing.text.JTextComponent
            astore 4 /* host */
        start local 4 // javax.swing.text.JTextComponent host
         3: .line 359
            aload 0 /* this */
            aload 4 /* host */
            invokevirtual javax.swing.text.JTextComponent.getSelectionStart:()I
            putfield javax.swing.text.WrappedPlainView.sel0:I
         4: .line 360
            aload 0 /* this */
            aload 4 /* host */
            invokevirtual javax.swing.text.JTextComponent.getSelectionEnd:()I
            putfield javax.swing.text.WrappedPlainView.sel1:I
         5: .line 361
            aload 0 /* this */
            aload 4 /* host */
            invokevirtual javax.swing.text.JTextComponent.isEnabled:()Z
            ifeq 7
         6: .line 362
            aload 4 /* host */
            invokevirtual javax.swing.text.JTextComponent.getForeground:()Ljava/awt/Color;
            goto 8
      StackMap locals: javax.swing.text.WrappedPlainView java.awt.Graphics java.awt.Shape java.awt.Rectangle javax.swing.text.JTextComponent
      StackMap stack: javax.swing.text.WrappedPlainView
         7: aload 4 /* host */
            invokevirtual javax.swing.text.JTextComponent.getDisabledTextColor:()Ljava/awt/Color;
         8: .line 361
      StackMap locals: javax.swing.text.WrappedPlainView java.awt.Graphics java.awt.Shape java.awt.Rectangle javax.swing.text.JTextComponent
      StackMap stack: javax.swing.text.WrappedPlainView java.awt.Color
            putfield javax.swing.text.WrappedPlainView.unselected:Ljava/awt/Color;
         9: .line 363
            aload 4 /* host */
            invokevirtual javax.swing.text.JTextComponent.getCaret:()Ljavax/swing/text/Caret;
            astore 5 /* c */
        start local 5 // javax.swing.text.Caret c
        10: .line 364
            aload 0 /* this */
            aload 5 /* c */
            invokeinterface javax.swing.text.Caret.isSelectionVisible:()Z
            ifeq 12
            aload 4 /* host */
            invokevirtual javax.swing.text.JTextComponent.getHighlighter:()Ljavax/swing/text/Highlighter;
            ifnull 12
        11: .line 365
            aload 4 /* host */
            invokevirtual javax.swing.text.JTextComponent.getSelectedTextColor:()Ljava/awt/Color;
            goto 13
      StackMap locals: javax.swing.text.WrappedPlainView java.awt.Graphics java.awt.Shape java.awt.Rectangle javax.swing.text.JTextComponent javax.swing.text.Caret
      StackMap stack: javax.swing.text.WrappedPlainView
        12: aload 0 /* this */
            getfield javax.swing.text.WrappedPlainView.unselected:Ljava/awt/Color;
        13: .line 364
      StackMap locals: javax.swing.text.WrappedPlainView java.awt.Graphics java.awt.Shape java.awt.Rectangle javax.swing.text.JTextComponent javax.swing.text.Caret
      StackMap stack: javax.swing.text.WrappedPlainView java.awt.Color
            putfield javax.swing.text.WrappedPlainView.selected:Ljava/awt/Color;
        14: .line 366
            aload 1 /* g */
            aload 4 /* host */
            invokevirtual javax.swing.text.JTextComponent.getFont:()Ljava/awt/Font;
            invokevirtual java.awt.Graphics.setFont:(Ljava/awt/Font;)V
        15: .line 369
            aload 0 /* this */
            aload 1 /* g */
            aload 2 /* a */
            invokespecial javax.swing.text.BoxView.paint:(Ljava/awt/Graphics;Ljava/awt/Shape;)V
        16: .line 370
            return
        end local 5 // javax.swing.text.Caret c
        end local 4 // javax.swing.text.JTextComponent host
        end local 3 // java.awt.Rectangle alloc
        end local 2 // java.awt.Shape a
        end local 1 // java.awt.Graphics g
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   17     0   this  Ljavax/swing/text/WrappedPlainView;
            0   17     1      g  Ljava/awt/Graphics;
            0   17     2      a  Ljava/awt/Shape;
            1   17     3  alloc  Ljava/awt/Rectangle;
            3   17     4   host  Ljavax/swing/text/JTextComponent;
           10   17     5      c  Ljavax/swing/text/Caret;
    MethodParameters:
      Name  Flags
      g     
      a     

  public void setSize(float, float);
    descriptor: (FF)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // javax.swing.text.WrappedPlainView this
        start local 1 // float width
        start local 2 // float height
         0: .line 381
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.updateMetrics:()V
         1: .line 382
            fload 1 /* width */
            f2i
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.getWidth:()I
            if_icmpeq 4
         2: .line 385
            aload 0 /* this */
            aconst_null
            iconst_1
            iconst_1
            invokevirtual javax.swing.text.WrappedPlainView.preferenceChanged:(Ljavax/swing/text/View;ZZ)V
         3: .line 386
            aload 0 /* this */
            iconst_1
            putfield javax.swing.text.WrappedPlainView.widthChanging:Z
         4: .line 388
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            fload 1 /* width */
            fload 2 /* height */
            invokespecial javax.swing.text.BoxView.setSize:(FF)V
         5: .line 389
            aload 0 /* this */
            iconst_0
            putfield javax.swing.text.WrappedPlainView.widthChanging:Z
         6: .line 390
            return
        end local 2 // float height
        end local 1 // float width
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Ljavax/swing/text/WrappedPlainView;
            0    7     1   width  F
            0    7     2  height  F
    MethodParameters:
        Name  Flags
      width   
      height  

  public float getPreferredSpan(int);
    descriptor: (I)F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.text.WrappedPlainView this
        start local 1 // int axis
         0: .line 408
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.updateMetrics:()V
         1: .line 409
            aload 0 /* this */
            iload 1 /* axis */
            invokespecial javax.swing.text.BoxView.getPreferredSpan:(I)F
            freturn
        end local 1 // int axis
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/text/WrappedPlainView;
            0    2     1  axis  I
    MethodParameters:
      Name  Flags
      axis  

  public float getMinimumSpan(int);
    descriptor: (I)F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.text.WrappedPlainView this
        start local 1 // int axis
         0: .line 428
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.updateMetrics:()V
         1: .line 429
            aload 0 /* this */
            iload 1 /* axis */
            invokespecial javax.swing.text.BoxView.getMinimumSpan:(I)F
            freturn
        end local 1 // int axis
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/text/WrappedPlainView;
            0    2     1  axis  I
    MethodParameters:
      Name  Flags
      axis  

  public float getMaximumSpan(int);
    descriptor: (I)F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.text.WrappedPlainView this
        start local 1 // int axis
         0: .line 448
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.updateMetrics:()V
         1: .line 449
            aload 0 /* this */
            iload 1 /* axis */
            invokespecial javax.swing.text.BoxView.getMaximumSpan:(I)F
            freturn
        end local 1 // int axis
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/text/WrappedPlainView;
            0    2     1  axis  I
    MethodParameters:
      Name  Flags
      axis  

  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=7, args_size=4
        start local 0 // javax.swing.text.WrappedPlainView this
        start local 1 // javax.swing.event.DocumentEvent e
        start local 2 // java.awt.Shape a
        start local 3 // javax.swing.text.ViewFactory f
         0: .line 463
            aload 0 /* this */
            aload 1 /* e */
            aload 2 /* a */
            invokevirtual javax.swing.text.WrappedPlainView.updateChildren:(Ljavax/swing/event/DocumentEvent;Ljava/awt/Shape;)V
         1: .line 465
            aload 2 /* a */
            ifnull 3
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.isAllocationValid:()Z
            ifeq 3
         2: .line 466
            aload 0 /* this */
            aload 2 /* a */
            invokevirtual javax.swing.text.WrappedPlainView.getInsideAllocation:(Ljava/awt/Shape;)Ljava/awt/Rectangle;
            goto 4
      StackMap locals:
      StackMap stack:
         3: aconst_null
         4: .line 465
      StackMap locals:
      StackMap stack: java.awt.Rectangle
            astore 4 /* alloc */
        start local 4 // java.awt.Rectangle alloc
         5: .line 467
            aload 1 /* e */
            invokeinterface javax.swing.event.DocumentEvent.getOffset:()I
            istore 5 /* pos */
        start local 5 // int pos
         6: .line 468
            aload 0 /* this */
            iload 5 /* pos */
            aload 4 /* alloc */
            invokevirtual javax.swing.text.WrappedPlainView.getViewAtPosition:(ILjava/awt/Rectangle;)Ljavax/swing/text/View;
            astore 6 /* v */
        start local 6 // javax.swing.text.View v
         7: .line 469
            aload 6 /* v */
            ifnull 9
         8: .line 470
            aload 6 /* v */
            aload 1 /* e */
            aload 4 /* alloc */
            aload 3 /* f */
            invokevirtual javax.swing.text.View.insertUpdate:(Ljavax/swing/event/DocumentEvent;Ljava/awt/Shape;Ljavax/swing/text/ViewFactory;)V
         9: .line 472
      StackMap locals: java.awt.Rectangle int javax.swing.text.View
      StackMap stack:
            return
        end local 6 // javax.swing.text.View v
        end local 5 // int pos
        end local 4 // java.awt.Rectangle alloc
        end local 3 // javax.swing.text.ViewFactory f
        end local 2 // java.awt.Shape a
        end local 1 // javax.swing.event.DocumentEvent e
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Ljavax/swing/text/WrappedPlainView;
            0   10     1      e  Ljavax/swing/event/DocumentEvent;
            0   10     2      a  Ljava/awt/Shape;
            0   10     3      f  Ljavax/swing/text/ViewFactory;
            5   10     4  alloc  Ljava/awt/Rectangle;
            6   10     5    pos  I
            7   10     6      v  Ljavax/swing/text/View;
    MethodParameters:
      Name  Flags
      e     
      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=7, args_size=4
        start local 0 // javax.swing.text.WrappedPlainView this
        start local 1 // javax.swing.event.DocumentEvent e
        start local 2 // java.awt.Shape a
        start local 3 // javax.swing.text.ViewFactory f
         0: .line 485
            aload 0 /* this */
            aload 1 /* e */
            aload 2 /* a */
            invokevirtual javax.swing.text.WrappedPlainView.updateChildren:(Ljavax/swing/event/DocumentEvent;Ljava/awt/Shape;)V
         1: .line 487
            aload 2 /* a */
            ifnull 3
            aload 0 /* this */
            invokevirtual javax.swing.text.WrappedPlainView.isAllocationValid:()Z
            ifeq 3
         2: .line 488
            aload 0 /* this */
            aload 2 /* a */
            invokevirtual javax.swing.text.WrappedPlainView.getInsideAllocation:(Ljava/awt/Shape;)Ljava/awt/Rectangle;
            goto 4
      StackMap locals:
      StackMap stack:
         3: aconst_null
         4: .line 487
      StackMap locals:
      StackMap stack: java.awt.Rectangle
            astore 4 /* alloc */
        start local 4 // java.awt.Rectangle alloc
         5: .line 489
            aload 1 /* e */
            invokeinterface javax.swing.event.DocumentEvent.getOffset:()I
            istore 5 /* pos */
        start local 5 // int pos
         6: .line 490
            aload 0 /* this */
            iload 5 /* pos */
            aload 4 /* alloc */
            invokevirtual javax.swing.text.WrappedPlainView.getViewAtPosition:(ILjava/awt/Rectangle;)Ljavax/swing/text/View;
            astore 6 /* v */
        start local 6 // javax.swing.text.View v
         7: .line 491
            aload 6 /* v */
            ifnull 9
         8: .line 492
            aload 6 /* v */
            aload 1 /* e */
            aload 4 /* alloc */
            aload 3 /* f */
            invokevirtual javax.swing.text.View.removeUpdate:(Ljavax/swing/event/DocumentEvent;Ljava/awt/Shape;Ljavax/swing/text/ViewFactory;)V
         9: .line 494
      StackMap locals: java.awt.Rectangle int javax.swing.text.View
      StackMap stack:
            return
        end local 6 // javax.swing.text.View v
        end local 5 // int pos
        end local 4 // java.awt.Rectangle alloc
        end local 3 // javax.swing.text.ViewFactory f
        end local 2 // java.awt.Shape a
        end local 1 // javax.swing.event.DocumentEvent e
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Ljavax/swing/text/WrappedPlainView;
            0   10     1      e  Ljavax/swing/event/DocumentEvent;
            0   10     2      a  Ljava/awt/Shape;
            0   10     3      f  Ljavax/swing/text/ViewFactory;
            5   10     4  alloc  Ljava/awt/Rectangle;
            6   10     5    pos  I
            7   10     6      v  Ljavax/swing/text/View;
    MethodParameters:
      Name  Flags
      e     
      a     
      f     

  public void changedUpdate(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=3, locals=4, args_size=4
        start local 0 // javax.swing.text.WrappedPlainView this
        start local 1 // javax.swing.event.DocumentEvent e
        start local 2 // java.awt.Shape a
        start local 3 // javax.swing.text.ViewFactory f
         0: .line 506
            aload 0 /* this */
            aload 1 /* e */
            aload 2 /* a */
            invokevirtual javax.swing.text.WrappedPlainView.updateChildren:(Ljavax/swing/event/DocumentEvent;Ljava/awt/Shape;)V
         1: .line 507
            return
        end local 3 // javax.swing.text.ViewFactory f
        end local 2 // java.awt.Shape a
        end local 1 // javax.swing.event.DocumentEvent e
        end local 0 // javax.swing.text.WrappedPlainView this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/text/WrappedPlainView;
            0    2     1     e  Ljavax/swing/event/DocumentEvent;
            0    2     2     a  Ljava/awt/Shape;
            0    2     3     f  Ljavax/swing/text/ViewFactory;
    MethodParameters:
      Name  Flags
      e     
      a     
      f     
}
SourceFile: "WrappedPlainView.java"
NestMembers:
  javax.swing.text.WrappedPlainView$WrappedLine
InnerClasses:
  public abstract ElementChange = javax.swing.event.DocumentEvent$ElementChange of javax.swing.event.DocumentEvent
  WrappedLine = javax.swing.text.WrappedPlainView$WrappedLine of javax.swing.text.WrappedPlainView