public abstract class javax.swing.text.AbstractWriter
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: javax.swing.text.AbstractWriter
  super_class: java.lang.Object
{
  private javax.swing.text.ElementIterator it;
    descriptor: Ljavax/swing/text/ElementIterator;
    flags: (0x0002) ACC_PRIVATE

  private java.io.Writer out;
    descriptor: Ljava/io/Writer;
    flags: (0x0002) ACC_PRIVATE

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

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

  private javax.swing.text.Document doc;
    descriptor: Ljavax/swing/text/Document;
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

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

  private java.lang.String lineSeparator;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private boolean canWrapLines;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean isLineEmpty;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private char[] indentChars;
    descriptor: [C
    flags: (0x0002) ACC_PRIVATE

  private char[] tempChars;
    descriptor: [C
    flags: (0x0002) ACC_PRIVATE

  private char[] newlineChars;
    descriptor: [C
    flags: (0x0002) ACC_PRIVATE

  private javax.swing.text.Segment segment;
    descriptor: Ljavax/swing/text/Segment;
    flags: (0x0002) ACC_PRIVATE

  protected static final char NEWLINE;
    descriptor: C
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 10

  protected void <init>(java.io.Writer, javax.swing.text.Document);
    descriptor: (Ljava/io/Writer;Ljavax/swing/text/Document;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // javax.swing.text.AbstractWriter this
        start local 1 // java.io.Writer w
        start local 2 // javax.swing.text.Document doc
         0: .line 118
            aload 0 /* this */
            aload 1 /* w */
            aload 2 /* doc */
            iconst_0
            aload 2 /* doc */
            invokeinterface javax.swing.text.Document.getLength:()I
            invokespecial javax.swing.text.AbstractWriter.<init>:(Ljava/io/Writer;Ljavax/swing/text/Document;II)V
         1: .line 119
            return
        end local 2 // javax.swing.text.Document doc
        end local 1 // java.io.Writer w
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/text/AbstractWriter;
            0    2     1     w  Ljava/io/Writer;
            0    2     2   doc  Ljavax/swing/text/Document;
    MethodParameters:
      Name  Flags
      w     
      doc   

  protected void <init>(java.io.Writer, javax.swing.text.Document, int, int);
    descriptor: (Ljava/io/Writer;Ljavax/swing/text/Document;II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=7, args_size=5
        start local 0 // javax.swing.text.AbstractWriter this
        start local 1 // java.io.Writer w
        start local 2 // javax.swing.text.Document doc
        start local 3 // int pos
        start local 4 // int len
         0: .line 132
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 46
            aload 0 /* this */
            iconst_0
            putfield javax.swing.text.AbstractWriter.indentLevel:I
         2: .line 47
            aload 0 /* this */
            iconst_2
            putfield javax.swing.text.AbstractWriter.indentSpace:I
         3: .line 48
            aload 0 /* this */
            aconst_null
            putfield javax.swing.text.AbstractWriter.doc:Ljavax/swing/text/Document;
         4: .line 49
            aload 0 /* this */
            bipush 100
            putfield javax.swing.text.AbstractWriter.maxLineLength:I
         5: .line 50
            aload 0 /* this */
            iconst_0
            putfield javax.swing.text.AbstractWriter.currLength:I
         6: .line 51
            aload 0 /* this */
            iconst_0
            putfield javax.swing.text.AbstractWriter.startOffset:I
         7: .line 52
            aload 0 /* this */
            iconst_0
            putfield javax.swing.text.AbstractWriter.endOffset:I
         8: .line 56
            aload 0 /* this */
            iconst_0
            putfield javax.swing.text.AbstractWriter.offsetIndent:I
         9: .line 133
            aload 0 /* this */
            aload 2 /* doc */
            putfield javax.swing.text.AbstractWriter.doc:Ljavax/swing/text/Document;
        10: .line 134
            aload 0 /* this */
            new javax.swing.text.ElementIterator
            dup
            aload 2 /* doc */
            invokeinterface javax.swing.text.Document.getDefaultRootElement:()Ljavax/swing/text/Element;
            invokespecial javax.swing.text.ElementIterator.<init>:(Ljavax/swing/text/Element;)V
            putfield javax.swing.text.AbstractWriter.it:Ljavax/swing/text/ElementIterator;
        11: .line 135
            aload 0 /* this */
            aload 1 /* w */
            putfield javax.swing.text.AbstractWriter.out:Ljava/io/Writer;
        12: .line 136
            aload 0 /* this */
            iload 3 /* pos */
            putfield javax.swing.text.AbstractWriter.startOffset:I
        13: .line 137
            aload 0 /* this */
            iload 3 /* pos */
            iload 4 /* len */
            iadd
            putfield javax.swing.text.AbstractWriter.endOffset:I
        14: .line 138
            aload 2 /* doc */
            ldc "__EndOfLine__"
            invokeinterface javax.swing.text.Document.getProperty:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 5 /* docNewline */
        start local 5 // java.lang.Object docNewline
        15: .line 140
            aload 5 /* docNewline */
            instanceof java.lang.String
            ifeq 18
        16: .line 141
            aload 0 /* this */
            aload 5 /* docNewline */
            checkcast java.lang.String
            invokevirtual javax.swing.text.AbstractWriter.setLineSeparator:(Ljava/lang/String;)V
        17: .line 142
            goto 25
        18: .line 144
      StackMap locals: javax.swing.text.AbstractWriter java.io.Writer javax.swing.text.Document int int java.lang.Object
      StackMap stack:
            aconst_null
            astore 6 /* newline */
        start local 6 // java.lang.String newline
        19: .line 146
            ldc "line.separator"
            invokestatic java.lang.System.getProperty:(Ljava/lang/String;)Ljava/lang/String;
            astore 6 /* newline */
        20: .line 147
            goto 22
      StackMap locals: javax.swing.text.AbstractWriter java.io.Writer javax.swing.text.Document int int java.lang.Object java.lang.String
      StackMap stack: java.lang.SecurityException
        21: pop
        22: .line 148
      StackMap locals:
      StackMap stack:
            aload 6 /* newline */
            ifnonnull 24
        23: .line 151
            ldc "\n"
            astore 6 /* newline */
        24: .line 153
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 6 /* newline */
            invokevirtual javax.swing.text.AbstractWriter.setLineSeparator:(Ljava/lang/String;)V
        end local 6 // java.lang.String newline
        25: .line 155
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield javax.swing.text.AbstractWriter.canWrapLines:Z
        26: .line 156
            return
        end local 5 // java.lang.Object docNewline
        end local 4 // int len
        end local 3 // int pos
        end local 2 // javax.swing.text.Document doc
        end local 1 // java.io.Writer w
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   27     0        this  Ljavax/swing/text/AbstractWriter;
            0   27     1           w  Ljava/io/Writer;
            0   27     2         doc  Ljavax/swing/text/Document;
            0   27     3         pos  I
            0   27     4         len  I
           15   27     5  docNewline  Ljava/lang/Object;
           19   25     6     newline  Ljava/lang/String;
      Exception table:
        from    to  target  type
          19    20      21  Class java.lang.SecurityException
    MethodParameters:
      Name  Flags
      w     
      doc   
      pos   
      len   

  protected void <init>(java.io.Writer, javax.swing.text.Element);
    descriptor: (Ljava/io/Writer;Ljavax/swing/text/Element;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // javax.swing.text.AbstractWriter this
        start local 1 // java.io.Writer w
        start local 2 // javax.swing.text.Element root
         0: .line 167
            aload 0 /* this */
            aload 1 /* w */
            aload 2 /* root */
            iconst_0
            aload 2 /* root */
            invokeinterface javax.swing.text.Element.getEndOffset:()I
            invokespecial javax.swing.text.AbstractWriter.<init>:(Ljava/io/Writer;Ljavax/swing/text/Element;II)V
         1: .line 168
            return
        end local 2 // javax.swing.text.Element root
        end local 1 // java.io.Writer w
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/text/AbstractWriter;
            0    2     1     w  Ljava/io/Writer;
            0    2     2  root  Ljavax/swing/text/Element;
    MethodParameters:
      Name  Flags
      w     
      root  

  protected void <init>(java.io.Writer, javax.swing.text.Element, int, int);
    descriptor: (Ljava/io/Writer;Ljavax/swing/text/Element;II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // javax.swing.text.AbstractWriter this
        start local 1 // java.io.Writer w
        start local 2 // javax.swing.text.Element root
        start local 3 // int pos
        start local 4 // int len
         0: .line 181
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 46
            aload 0 /* this */
            iconst_0
            putfield javax.swing.text.AbstractWriter.indentLevel:I
         2: .line 47
            aload 0 /* this */
            iconst_2
            putfield javax.swing.text.AbstractWriter.indentSpace:I
         3: .line 48
            aload 0 /* this */
            aconst_null
            putfield javax.swing.text.AbstractWriter.doc:Ljavax/swing/text/Document;
         4: .line 49
            aload 0 /* this */
            bipush 100
            putfield javax.swing.text.AbstractWriter.maxLineLength:I
         5: .line 50
            aload 0 /* this */
            iconst_0
            putfield javax.swing.text.AbstractWriter.currLength:I
         6: .line 51
            aload 0 /* this */
            iconst_0
            putfield javax.swing.text.AbstractWriter.startOffset:I
         7: .line 52
            aload 0 /* this */
            iconst_0
            putfield javax.swing.text.AbstractWriter.endOffset:I
         8: .line 56
            aload 0 /* this */
            iconst_0
            putfield javax.swing.text.AbstractWriter.offsetIndent:I
         9: .line 182
            aload 0 /* this */
            aload 2 /* root */
            invokeinterface javax.swing.text.Element.getDocument:()Ljavax/swing/text/Document;
            putfield javax.swing.text.AbstractWriter.doc:Ljavax/swing/text/Document;
        10: .line 183
            aload 0 /* this */
            new javax.swing.text.ElementIterator
            dup
            aload 2 /* root */
            invokespecial javax.swing.text.ElementIterator.<init>:(Ljavax/swing/text/Element;)V
            putfield javax.swing.text.AbstractWriter.it:Ljavax/swing/text/ElementIterator;
        11: .line 184
            aload 0 /* this */
            aload 1 /* w */
            putfield javax.swing.text.AbstractWriter.out:Ljava/io/Writer;
        12: .line 185
            aload 0 /* this */
            iload 3 /* pos */
            putfield javax.swing.text.AbstractWriter.startOffset:I
        13: .line 186
            aload 0 /* this */
            iload 3 /* pos */
            iload 4 /* len */
            iadd
            putfield javax.swing.text.AbstractWriter.endOffset:I
        14: .line 187
            aload 0 /* this */
            iconst_1
            putfield javax.swing.text.AbstractWriter.canWrapLines:Z
        15: .line 188
            return
        end local 4 // int len
        end local 3 // int pos
        end local 2 // javax.swing.text.Element root
        end local 1 // java.io.Writer w
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Ljavax/swing/text/AbstractWriter;
            0   16     1     w  Ljava/io/Writer;
            0   16     2  root  Ljavax/swing/text/Element;
            0   16     3   pos  I
            0   16     4   len  I
    MethodParameters:
      Name  Flags
      w     
      root  
      pos   
      len   

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

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

  protected javax.swing.text.ElementIterator getElementIterator();
    descriptor: ()Ljavax/swing/text/ElementIterator;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.text.AbstractWriter this
         0: .line 214
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.it:Ljavax/swing/text/ElementIterator;
            areturn
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/AbstractWriter;

  protected java.io.Writer getWriter();
    descriptor: ()Ljava/io/Writer;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.text.AbstractWriter this
         0: .line 223
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.out:Ljava/io/Writer;
            areturn
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/AbstractWriter;

  protected javax.swing.text.Document getDocument();
    descriptor: ()Ljavax/swing/text/Document;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.text.AbstractWriter this
         0: .line 232
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.doc:Ljavax/swing/text/Document;
            areturn
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/AbstractWriter;

  protected boolean inRange(javax.swing.text.Element);
    descriptor: (Ljavax/swing/text/Element;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // javax.swing.text.AbstractWriter this
        start local 1 // javax.swing.text.Element next
         0: .line 247
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.getStartOffset:()I
            istore 2 /* startOffset */
        start local 2 // int startOffset
         1: .line 248
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.getEndOffset:()I
            istore 3 /* endOffset */
        start local 3 // int endOffset
         2: .line 249
            aload 1 /* next */
            invokeinterface javax.swing.text.Element.getStartOffset:()I
            iload 2 /* startOffset */
            if_icmplt 4
         3: .line 250
            aload 1 /* next */
            invokeinterface javax.swing.text.Element.getStartOffset:()I
            iload 3 /* endOffset */
            if_icmplt 6
         4: .line 251
      StackMap locals: int int
      StackMap stack:
            iload 2 /* startOffset */
            aload 1 /* next */
            invokeinterface javax.swing.text.Element.getStartOffset:()I
            if_icmplt 7
         5: .line 252
            iload 2 /* startOffset */
            aload 1 /* next */
            invokeinterface javax.swing.text.Element.getEndOffset:()I
            if_icmpge 7
         6: .line 253
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
         7: .line 255
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // int endOffset
        end local 2 // int startOffset
        end local 1 // javax.swing.text.Element next
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Ljavax/swing/text/AbstractWriter;
            0    8     1         next  Ljavax/swing/text/Element;
            1    8     2  startOffset  I
            2    8     3    endOffset  I
    MethodParameters:
      Name  Flags
      next  

  protected abstract void write();
    descriptor: ()V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException, javax.swing.text.BadLocationException

  protected java.lang.String getText(javax.swing.text.Element);
    descriptor: (Ljavax/swing/text/Element;)Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javax.swing.text.AbstractWriter this
        start local 1 // javax.swing.text.Element elem
         0: .line 278
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.doc:Ljavax/swing/text/Document;
            aload 1 /* elem */
            invokeinterface javax.swing.text.Element.getStartOffset:()I
         1: .line 279
            aload 1 /* elem */
            invokeinterface javax.swing.text.Element.getEndOffset:()I
            aload 1 /* elem */
            invokeinterface javax.swing.text.Element.getStartOffset:()I
            isub
         2: .line 278
            invokeinterface javax.swing.text.Document.getText:(II)Ljava/lang/String;
            areturn
        end local 1 // javax.swing.text.Element elem
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavax/swing/text/AbstractWriter;
            0    3     1  elem  Ljavax/swing/text/Element;
    Exceptions:
      throws javax.swing.text.BadLocationException
    MethodParameters:
      Name  Flags
      elem  

  protected void text(javax.swing.text.Element);
    descriptor: (Ljavax/swing/text/Element;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // javax.swing.text.AbstractWriter this
        start local 1 // javax.swing.text.Element elem
         0: .line 295
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.getStartOffset:()I
            aload 1 /* elem */
            invokeinterface javax.swing.text.Element.getStartOffset:()I
            invokestatic java.lang.Math.max:(II)I
            istore 2 /* start */
        start local 2 // int start
         1: .line 296
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.getEndOffset:()I
            aload 1 /* elem */
            invokeinterface javax.swing.text.Element.getEndOffset:()I
            invokestatic java.lang.Math.min:(II)I
            istore 3 /* end */
        start local 3 // int end
         2: .line 297
            iload 2 /* start */
            iload 3 /* end */
            if_icmpge 8
         3: .line 298
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.segment:Ljavax/swing/text/Segment;
            ifnonnull 5
         4: .line 299
            aload 0 /* this */
            new javax.swing.text.Segment
            dup
            invokespecial javax.swing.text.Segment.<init>:()V
            putfield javax.swing.text.AbstractWriter.segment:Ljavax/swing/text/Segment;
         5: .line 301
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.getDocument:()Ljavax/swing/text/Document;
            iload 2 /* start */
            iload 3 /* end */
            iload 2 /* start */
            isub
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.segment:Ljavax/swing/text/Segment;
            invokeinterface javax.swing.text.Document.getText:(IILjavax/swing/text/Segment;)V
         6: .line 302
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.segment:Ljavax/swing/text/Segment;
            getfield javax.swing.text.Segment.count:I
            ifle 8
         7: .line 303
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.segment:Ljavax/swing/text/Segment;
            getfield javax.swing.text.Segment.array:[C
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.segment:Ljavax/swing/text/Segment;
            getfield javax.swing.text.Segment.offset:I
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.segment:Ljavax/swing/text/Segment;
            getfield javax.swing.text.Segment.count:I
            invokevirtual javax.swing.text.AbstractWriter.write:([CII)V
         8: .line 306
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int end
        end local 2 // int start
        end local 1 // javax.swing.text.Element elem
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Ljavax/swing/text/AbstractWriter;
            0    9     1   elem  Ljavax/swing/text/Element;
            1    9     2  start  I
            2    9     3    end  I
    Exceptions:
      throws javax.swing.text.BadLocationException, java.io.IOException
    MethodParameters:
      Name  Flags
      elem  

  protected void setLineLength(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.text.AbstractWriter this
        start local 1 // int l
         0: .line 315
            aload 0 /* this */
            iload 1 /* l */
            putfield javax.swing.text.AbstractWriter.maxLineLength:I
         1: .line 316
            return
        end local 1 // int l
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/swing/text/AbstractWriter;
            0    2     1     l  I
    MethodParameters:
      Name  Flags
      l     

  protected int getLineLength();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.text.AbstractWriter this
         0: .line 324
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.maxLineLength:I
            ireturn
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/AbstractWriter;

  protected void setCurrentLineLength(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.text.AbstractWriter this
        start local 1 // int length
         0: .line 333
            aload 0 /* this */
            iload 1 /* length */
            putfield javax.swing.text.AbstractWriter.currLength:I
         1: .line 334
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.currLength:I
            ifne 2
            iconst_1
            goto 3
      StackMap locals:
      StackMap stack: javax.swing.text.AbstractWriter
         2: iconst_0
      StackMap locals: javax.swing.text.AbstractWriter int
      StackMap stack: javax.swing.text.AbstractWriter int
         3: putfield javax.swing.text.AbstractWriter.isLineEmpty:Z
         4: .line 335
            return
        end local 1 // int length
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Ljavax/swing/text/AbstractWriter;
            0    5     1  length  I
    MethodParameters:
        Name  Flags
      length  

  protected int getCurrentLineLength();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.text.AbstractWriter this
         0: .line 343
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.currLength:I
            ireturn
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/AbstractWriter;

  protected boolean isLineEmpty();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.text.AbstractWriter this
         0: .line 354
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.isLineEmpty:Z
            ireturn
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/AbstractWriter;

  protected void setCanWrapLines(boolean);
    descriptor: (Z)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.text.AbstractWriter this
        start local 1 // boolean newValue
         0: .line 365
            aload 0 /* this */
            iload 1 /* newValue */
            putfield javax.swing.text.AbstractWriter.canWrapLines:Z
         1: .line 366
            return
        end local 1 // boolean newValue
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Ljavax/swing/text/AbstractWriter;
            0    2     1  newValue  Z
    MethodParameters:
          Name  Flags
      newValue  

  protected boolean getCanWrapLines();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.text.AbstractWriter this
         0: .line 375
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.canWrapLines:Z
            ireturn
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/AbstractWriter;

  protected void setIndentSpace(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.text.AbstractWriter this
        start local 1 // int space
         0: .line 386
            aload 0 /* this */
            iload 1 /* space */
            putfield javax.swing.text.AbstractWriter.indentSpace:I
         1: .line 387
            return
        end local 1 // int space
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Ljavax/swing/text/AbstractWriter;
            0    2     1  space  I
    MethodParameters:
       Name  Flags
      space  

  protected int getIndentSpace();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.text.AbstractWriter this
         0: .line 395
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.indentSpace:I
            ireturn
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/AbstractWriter;

  public void setLineSeparator(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.swing.text.AbstractWriter this
        start local 1 // java.lang.String value
         0: .line 406
            aload 0 /* this */
            aload 1 /* value */
            putfield javax.swing.text.AbstractWriter.lineSeparator:Ljava/lang/String;
         1: .line 407
            return
        end local 1 // java.lang.String value
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Ljavax/swing/text/AbstractWriter;
            0    2     1  value  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      value  

  public java.lang.String getLineSeparator();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.text.AbstractWriter this
         0: .line 415
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.lineSeparator:Ljava/lang/String;
            areturn
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/AbstractWriter;

  protected void incrIndent();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javax.swing.text.AbstractWriter this
         0: .line 425
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.offsetIndent:I
            ifle 3
         1: .line 426
            aload 0 /* this */
            dup
            getfield javax.swing.text.AbstractWriter.offsetIndent:I
            iconst_1
            iadd
            putfield javax.swing.text.AbstractWriter.offsetIndent:I
         2: .line 427
            goto 6
         3: .line 429
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield javax.swing.text.AbstractWriter.indentLevel:I
            iconst_1
            iadd
            dup_x1
            putfield javax.swing.text.AbstractWriter.indentLevel:I
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.getIndentSpace:()I
            imul
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.getLineLength:()I
            if_icmplt 6
         4: .line 430
            aload 0 /* this */
            dup
            getfield javax.swing.text.AbstractWriter.offsetIndent:I
            iconst_1
            iadd
            putfield javax.swing.text.AbstractWriter.offsetIndent:I
         5: .line 431
            aload 0 /* this */
            dup
            getfield javax.swing.text.AbstractWriter.indentLevel:I
            iconst_1
            isub
            putfield javax.swing.text.AbstractWriter.indentLevel:I
         6: .line 434
      StackMap locals:
      StackMap stack:
            return
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljavax/swing/text/AbstractWriter;

  protected void decrIndent();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javax.swing.text.AbstractWriter this
         0: .line 440
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.offsetIndent:I
            ifle 3
         1: .line 441
            aload 0 /* this */
            dup
            getfield javax.swing.text.AbstractWriter.offsetIndent:I
            iconst_1
            isub
            putfield javax.swing.text.AbstractWriter.offsetIndent:I
         2: .line 442
            goto 4
         3: .line 444
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield javax.swing.text.AbstractWriter.indentLevel:I
            iconst_1
            isub
            putfield javax.swing.text.AbstractWriter.indentLevel:I
         4: .line 446
      StackMap locals:
      StackMap stack:
            return
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljavax/swing/text/AbstractWriter;

  protected int getIndentLevel();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.swing.text.AbstractWriter this
         0: .line 456
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.indentLevel:I
            ireturn
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/swing/text/AbstractWriter;

  protected void indent();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // javax.swing.text.AbstractWriter this
         0: .line 468
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.getIndentLevel:()I
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.getIndentSpace:()I
            imul
            istore 1 /* max */
        start local 1 // int max
         1: .line 469
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.indentChars:[C
            ifnull 2
            iload 1 /* max */
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.indentChars:[C
            arraylength
            if_icmple 8
         2: .line 470
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* max */
            newarray 5
            putfield javax.swing.text.AbstractWriter.indentChars:[C
         3: .line 471
            iconst_0
            istore 2 /* counter */
        start local 2 // int counter
         4: goto 7
         5: .line 472
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.indentChars:[C
            iload 2 /* counter */
            bipush 32
            castore
         6: .line 471
            iinc 2 /* counter */ 1
      StackMap locals:
      StackMap stack:
         7: iload 2 /* counter */
            iload 1 /* max */
            if_icmplt 5
        end local 2 // int counter
         8: .line 475
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.getCurrentLineLength:()I
            istore 2 /* length */
        start local 2 // int length
         9: .line 476
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.isLineEmpty:()Z
            istore 3 /* wasEmpty */
        start local 3 // boolean wasEmpty
        10: .line 477
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.indentChars:[C
            iconst_0
            iload 1 /* max */
            invokevirtual javax.swing.text.AbstractWriter.output:([CII)V
        11: .line 478
            iload 3 /* wasEmpty */
            ifeq 13
            iload 2 /* length */
            ifne 13
        12: .line 479
            aload 0 /* this */
            iconst_1
            putfield javax.swing.text.AbstractWriter.isLineEmpty:Z
        13: .line 481
      StackMap locals: int int
      StackMap stack:
            return
        end local 3 // boolean wasEmpty
        end local 2 // int length
        end local 1 // int max
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Ljavax/swing/text/AbstractWriter;
            1   14     1       max  I
            4    8     2   counter  I
            9   14     2    length  I
           10   14     3  wasEmpty  Z
    Exceptions:
      throws java.io.IOException

  protected void write(char);
    descriptor: (C)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // javax.swing.text.AbstractWriter this
        start local 1 // char ch
         0: .line 491
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.tempChars:[C
            ifnonnull 2
         1: .line 492
            aload 0 /* this */
            sipush 128
            newarray 5
            putfield javax.swing.text.AbstractWriter.tempChars:[C
         2: .line 494
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.tempChars:[C
            iconst_0
            iload 1 /* ch */
            castore
         3: .line 495
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.tempChars:[C
            iconst_0
            iconst_1
            invokevirtual javax.swing.text.AbstractWriter.write:([CII)V
         4: .line 496
            return
        end local 1 // char ch
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljavax/swing/text/AbstractWriter;
            0    5     1    ch  C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      ch    

  protected void write(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // javax.swing.text.AbstractWriter this
        start local 1 // java.lang.String content
         0: .line 506
            aload 1 /* content */
            ifnonnull 2
         1: .line 507
            return
         2: .line 509
      StackMap locals:
      StackMap stack:
            aload 1 /* content */
            invokevirtual java.lang.String.length:()I
            istore 2 /* size */
        start local 2 // int size
         3: .line 510
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.tempChars:[C
            ifnull 4
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.tempChars:[C
            arraylength
            iload 2 /* size */
            if_icmpge 5
         4: .line 511
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* size */
            newarray 5
            putfield javax.swing.text.AbstractWriter.tempChars:[C
         5: .line 513
      StackMap locals:
      StackMap stack:
            aload 1 /* content */
            iconst_0
            iload 2 /* size */
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.tempChars:[C
            iconst_0
            invokevirtual java.lang.String.getChars:(II[CI)V
         6: .line 514
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.tempChars:[C
            iconst_0
            iload 2 /* size */
            invokevirtual javax.swing.text.AbstractWriter.write:([CII)V
         7: .line 515
            return
        end local 2 // int size
        end local 1 // java.lang.String content
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Ljavax/swing/text/AbstractWriter;
            0    8     1  content  Ljava/lang/String;
            3    8     2     size  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      content  

  protected void writeLineSeparator();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // javax.swing.text.AbstractWriter this
         0: .line 524
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.getLineSeparator:()Ljava/lang/String;
            astore 1 /* newline */
        start local 1 // java.lang.String newline
         1: .line 525
            aload 1 /* newline */
            invokevirtual java.lang.String.length:()I
            istore 2 /* length */
        start local 2 // int length
         2: .line 526
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.newlineChars:[C
            ifnull 3
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.newlineChars:[C
            arraylength
            iload 2 /* length */
            if_icmpge 4
         3: .line 527
      StackMap locals: java.lang.String int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* length */
            newarray 5
            putfield javax.swing.text.AbstractWriter.newlineChars:[C
         4: .line 529
      StackMap locals:
      StackMap stack:
            aload 1 /* newline */
            iconst_0
            iload 2 /* length */
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.newlineChars:[C
            iconst_0
            invokevirtual java.lang.String.getChars:(II[CI)V
         5: .line 530
            aload 0 /* this */
            aload 0 /* this */
            getfield javax.swing.text.AbstractWriter.newlineChars:[C
            iconst_0
            iload 2 /* length */
            invokevirtual javax.swing.text.AbstractWriter.output:([CII)V
         6: .line 531
            aload 0 /* this */
            iconst_0
            invokevirtual javax.swing.text.AbstractWriter.setCurrentLineLength:(I)V
         7: .line 532
            return
        end local 2 // int length
        end local 1 // java.lang.String newline
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Ljavax/swing/text/AbstractWriter;
            1    8     1  newline  Ljava/lang/String;
            2    8     2   length  I
    Exceptions:
      throws java.io.IOException

  protected void write(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=14, args_size=4
        start local 0 // javax.swing.text.AbstractWriter this
        start local 1 // char[] chars
        start local 2 // int startIndex
        start local 3 // int length
         0: .line 549
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.getCanWrapLines:()Z
            ifne 14
         1: .line 552
            iload 2 /* startIndex */
            istore 4 /* lastIndex */
        start local 4 // int lastIndex
         2: .line 553
            iload 2 /* startIndex */
            iload 3 /* length */
            iadd
            istore 5 /* endIndex */
        start local 5 // int endIndex
         3: .line 554
            aload 0 /* this */
            aload 1 /* chars */
            bipush 10
            iload 2 /* startIndex */
            iload 5 /* endIndex */
            invokevirtual javax.swing.text.AbstractWriter.indexOf:([CCII)I
            istore 6 /* newlineIndex */
        start local 6 // int newlineIndex
         4: .line 555
            goto 10
         5: .line 556
      StackMap locals: int int int
      StackMap stack:
            iload 6 /* newlineIndex */
            iload 4 /* lastIndex */
            if_icmple 7
         6: .line 557
            aload 0 /* this */
            aload 1 /* chars */
            iload 4 /* lastIndex */
            iload 6 /* newlineIndex */
            iload 4 /* lastIndex */
            isub
            invokevirtual javax.swing.text.AbstractWriter.output:([CII)V
         7: .line 559
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.writeLineSeparator:()V
         8: .line 560
            iload 6 /* newlineIndex */
            iconst_1
            iadd
            istore 4 /* lastIndex */
         9: .line 561
            aload 0 /* this */
            aload 1 /* chars */
            bipush 10
            iload 4 /* lastIndex */
            iload 5 /* endIndex */
            invokevirtual javax.swing.text.AbstractWriter.indexOf:([CCII)I
            istore 6 /* newlineIndex */
        10: .line 555
      StackMap locals:
      StackMap stack:
            iload 6 /* newlineIndex */
            iconst_m1
            if_icmpne 5
        11: .line 563
            iload 4 /* lastIndex */
            iload 5 /* endIndex */
            if_icmpge 89
        12: .line 564
            aload 0 /* this */
            aload 1 /* chars */
            iload 4 /* lastIndex */
            iload 5 /* endIndex */
            iload 4 /* lastIndex */
            isub
            invokevirtual javax.swing.text.AbstractWriter.output:([CII)V
        end local 6 // int newlineIndex
        end local 5 // int endIndex
        end local 4 // int lastIndex
        13: .line 566
            goto 89
        14: .line 569
      StackMap locals:
      StackMap stack:
            iload 2 /* startIndex */
            istore 4 /* lastIndex */
        start local 4 // int lastIndex
        15: .line 570
            iload 2 /* startIndex */
            iload 3 /* length */
            iadd
            istore 5 /* endIndex */
        start local 5 // int endIndex
        16: .line 571
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.getCurrentLineLength:()I
            istore 6 /* lineLength */
        start local 6 // int lineLength
        17: .line 572
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.getLineLength:()I
            istore 7 /* maxLength */
        start local 7 // int maxLength
        18: .line 574
            goto 88
        19: .line 575
      StackMap locals: javax.swing.text.AbstractWriter char[] int int int int int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* chars */
            bipush 10
            iload 4 /* lastIndex */
        20: .line 576
            iload 5 /* endIndex */
        21: .line 575
            invokevirtual javax.swing.text.AbstractWriter.indexOf:([CCII)I
            istore 8 /* newlineIndex */
        start local 8 // int newlineIndex
        22: .line 577
            iconst_0
            istore 9 /* needsNewline */
        start local 9 // boolean needsNewline
        23: .line 578
            iconst_0
            istore 10 /* forceNewLine */
        start local 10 // boolean forceNewLine
        24: .line 580
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.getCurrentLineLength:()I
            istore 6 /* lineLength */
        25: .line 581
            iload 8 /* newlineIndex */
            iconst_m1
            if_icmpeq 32
            iload 6 /* lineLength */
        26: .line 582
            iload 8 /* newlineIndex */
            iload 4 /* lastIndex */
            isub
            iadd
            iload 7 /* maxLength */
            if_icmpge 32
        27: .line 583
            iload 8 /* newlineIndex */
            iload 4 /* lastIndex */
            if_icmple 29
        28: .line 584
            aload 0 /* this */
            aload 1 /* chars */
            iload 4 /* lastIndex */
            iload 8 /* newlineIndex */
            iload 4 /* lastIndex */
            isub
            invokevirtual javax.swing.text.AbstractWriter.output:([CII)V
        29: .line 586
      StackMap locals: int int int
      StackMap stack:
            iload 8 /* newlineIndex */
            iconst_1
            iadd
            istore 4 /* lastIndex */
        30: .line 587
            iconst_1
            istore 10 /* forceNewLine */
        31: .line 588
            goto 84
        32: .line 589
      StackMap locals:
      StackMap stack:
            iload 8 /* newlineIndex */
            iconst_m1
            if_icmpne 38
            iload 6 /* lineLength */
        33: .line 590
            iload 5 /* endIndex */
            iload 4 /* lastIndex */
            isub
            iadd
            iload 7 /* maxLength */
            if_icmpge 38
        34: .line 591
            iload 5 /* endIndex */
            iload 4 /* lastIndex */
            if_icmple 36
        35: .line 592
            aload 0 /* this */
            aload 1 /* chars */
            iload 4 /* lastIndex */
            iload 5 /* endIndex */
            iload 4 /* lastIndex */
            isub
            invokevirtual javax.swing.text.AbstractWriter.output:([CII)V
        36: .line 594
      StackMap locals:
      StackMap stack:
            iload 5 /* endIndex */
            istore 4 /* lastIndex */
        37: .line 595
            goto 84
        38: .line 600
      StackMap locals:
      StackMap stack:
            iconst_m1
            istore 11 /* breakPoint */
        start local 11 // int breakPoint
        39: .line 601
            iload 5 /* endIndex */
            iload 4 /* lastIndex */
            isub
        40: .line 602
            iload 7 /* maxLength */
            iload 6 /* lineLength */
            isub
            iconst_1
            isub
        41: .line 601
            invokestatic java.lang.Math.min:(II)I
            istore 12 /* maxBreak */
        start local 12 // int maxBreak
        42: .line 603
            iconst_0
            istore 13 /* counter */
        start local 13 // int counter
        43: .line 604
            goto 50
        44: .line 605
      StackMap locals: int int int
      StackMap stack:
            aload 1 /* chars */
            iload 13 /* counter */
        45: .line 606
            iload 4 /* lastIndex */
            iadd
        46: .line 605
            caload
            invokestatic java.lang.Character.isWhitespace:(C)Z
        47: .line 606
            ifeq 49
        48: .line 607
            iload 13 /* counter */
            istore 11 /* breakPoint */
        49: .line 609
      StackMap locals:
      StackMap stack:
            iinc 13 /* counter */ 1
        50: .line 604
      StackMap locals:
      StackMap stack:
            iload 13 /* counter */
            iload 12 /* maxBreak */
            if_icmplt 44
        51: .line 611
            iload 11 /* breakPoint */
            iconst_m1
            if_icmpeq 57
        52: .line 613
            iload 11 /* breakPoint */
            iload 4 /* lastIndex */
            iconst_1
            iadd
            iadd
            istore 11 /* breakPoint */
        53: .line 614
            aload 0 /* this */
            aload 1 /* chars */
            iload 4 /* lastIndex */
            iload 11 /* breakPoint */
            iload 4 /* lastIndex */
            isub
            invokevirtual javax.swing.text.AbstractWriter.output:([CII)V
        54: .line 615
            iload 11 /* breakPoint */
            istore 4 /* lastIndex */
        55: .line 616
            iconst_1
            istore 9 /* needsNewline */
        56: .line 617
            goto 84
        57: .line 625
      StackMap locals:
      StackMap stack:
            iconst_0
            iload 12 /* maxBreak */
            invokestatic java.lang.Math.max:(II)I
            istore 13 /* counter */
        58: .line 626
            iload 5 /* endIndex */
            iload 4 /* lastIndex */
            isub
            istore 12 /* maxBreak */
        59: .line 627
            goto 67
        60: .line 628
      StackMap locals:
      StackMap stack:
            aload 1 /* chars */
            iload 13 /* counter */
        61: .line 629
            iload 4 /* lastIndex */
            iadd
        62: .line 628
            caload
            invokestatic java.lang.Character.isWhitespace:(C)Z
        63: .line 629
            ifeq 66
        64: .line 630
            iload 13 /* counter */
            istore 11 /* breakPoint */
        65: .line 631
            goto 68
        66: .line 633
      StackMap locals:
      StackMap stack:
            iinc 13 /* counter */ 1
        67: .line 627
      StackMap locals:
      StackMap stack:
            iload 13 /* counter */
            iload 12 /* maxBreak */
            if_icmplt 60
        68: .line 635
      StackMap locals:
      StackMap stack:
            iload 11 /* breakPoint */
            iconst_m1
            if_icmpne 72
        69: .line 636
            aload 0 /* this */
            aload 1 /* chars */
            iload 4 /* lastIndex */
            iload 5 /* endIndex */
            iload 4 /* lastIndex */
            isub
            invokevirtual javax.swing.text.AbstractWriter.output:([CII)V
        70: .line 637
            iload 5 /* endIndex */
            istore 11 /* breakPoint */
        71: .line 638
            goto 83
        72: .line 640
      StackMap locals:
      StackMap stack:
            iload 11 /* breakPoint */
            iload 4 /* lastIndex */
            iadd
            istore 11 /* breakPoint */
        73: .line 641
            aload 1 /* chars */
            iload 11 /* breakPoint */
            caload
            bipush 10
            if_icmpne 79
        74: .line 642
            aload 0 /* this */
            aload 1 /* chars */
            iload 4 /* lastIndex */
            iload 11 /* breakPoint */
            iinc 11 /* breakPoint */ 1
        75: .line 643
            iload 4 /* lastIndex */
            isub
        76: .line 642
            invokevirtual javax.swing.text.AbstractWriter.output:([CII)V
        77: .line 644
            iconst_1
            istore 10 /* forceNewLine */
        78: .line 645
            goto 83
        79: .line 647
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* chars */
            iload 4 /* lastIndex */
            iinc 11 /* breakPoint */ 1
            iload 11 /* breakPoint */
        80: .line 648
            iload 4 /* lastIndex */
            isub
        81: .line 647
            invokevirtual javax.swing.text.AbstractWriter.output:([CII)V
        82: .line 649
            iconst_1
            istore 9 /* needsNewline */
        83: .line 652
      StackMap locals:
      StackMap stack:
            iload 11 /* breakPoint */
            istore 4 /* lastIndex */
        end local 13 // int counter
        end local 12 // int maxBreak
        end local 11 // int breakPoint
        84: .line 655
      StackMap locals:
      StackMap stack:
            iload 10 /* forceNewLine */
            ifne 85
            iload 9 /* needsNewline */
            ifne 85
            iload 4 /* lastIndex */
            iload 5 /* endIndex */
            if_icmpge 88
        85: .line 656
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.writeLineSeparator:()V
        86: .line 657
            iload 4 /* lastIndex */
            iload 5 /* endIndex */
            if_icmplt 87
            iload 10 /* forceNewLine */
            ifne 88
        87: .line 658
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.indent:()V
        end local 10 // boolean forceNewLine
        end local 9 // boolean needsNewline
        end local 8 // int newlineIndex
        88: .line 574
      StackMap locals:
      StackMap stack:
            iload 4 /* lastIndex */
            iload 5 /* endIndex */
            if_icmplt 19
        end local 7 // int maxLength
        end local 6 // int lineLength
        end local 5 // int endIndex
        end local 4 // int lastIndex
        89: .line 663
      StackMap locals: javax.swing.text.AbstractWriter char[] int int
      StackMap stack:
            return
        end local 3 // int length
        end local 2 // int startIndex
        end local 1 // char[] chars
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   90     0          this  Ljavax/swing/text/AbstractWriter;
            0   90     1         chars  [C
            0   90     2    startIndex  I
            0   90     3        length  I
            2   13     4     lastIndex  I
            3   13     5      endIndex  I
            4   13     6  newlineIndex  I
           15   89     4     lastIndex  I
           16   89     5      endIndex  I
           17   89     6    lineLength  I
           18   89     7     maxLength  I
           22   88     8  newlineIndex  I
           23   88     9  needsNewline  Z
           24   88    10  forceNewLine  Z
           39   84    11    breakPoint  I
           42   84    12      maxBreak  I
           43   84    13       counter  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
            Name  Flags
      chars       
      startIndex  
      length      

  protected void writeAttributes(javax.swing.text.AttributeSet);
    descriptor: (Ljavax/swing/text/AttributeSet;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // javax.swing.text.AbstractWriter this
        start local 1 // javax.swing.text.AttributeSet attr
         0: .line 674
            aload 1 /* attr */
            invokeinterface javax.swing.text.AttributeSet.getAttributeNames:()Ljava/util/Enumeration;
            astore 2 /* names */
        start local 2 // java.util.Enumeration names
         1: .line 675
            goto 4
         2: .line 676
      StackMap locals: java.util.Enumeration
      StackMap stack:
            aload 2 /* names */
            invokeinterface java.util.Enumeration.nextElement:()Ljava/lang/Object;
            astore 3 /* name */
        start local 3 // java.lang.Object name
         3: .line 677
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc " "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 3 /* name */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc "="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 1 /* attr */
            aload 3 /* name */
            invokeinterface javax.swing.text.AttributeSet.getAttribute:(Ljava/lang/Object;)Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual javax.swing.text.AbstractWriter.write:(Ljava/lang/String;)V
        end local 3 // java.lang.Object name
         4: .line 675
      StackMap locals:
      StackMap stack:
            aload 2 /* names */
            invokeinterface java.util.Enumeration.hasMoreElements:()Z
            ifne 2
         5: .line 679
            return
        end local 2 // java.util.Enumeration names
        end local 1 // javax.swing.text.AttributeSet attr
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Ljavax/swing/text/AbstractWriter;
            0    6     1   attr  Ljavax/swing/text/AttributeSet;
            1    6     2  names  Ljava/util/Enumeration;
            3    4     3   name  Ljava/lang/Object;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      attr  

  protected void output(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // javax.swing.text.AbstractWriter this
        start local 1 // char[] content
        start local 2 // int start
        start local 3 // int length
         0: .line 696
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.getWriter:()Ljava/io/Writer;
            aload 1 /* content */
            iload 2 /* start */
            iload 3 /* length */
            invokevirtual java.io.Writer.write:([CII)V
         1: .line 697
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual javax.swing.text.AbstractWriter.getCurrentLineLength:()I
            iload 3 /* length */
            iadd
            invokevirtual javax.swing.text.AbstractWriter.setCurrentLineLength:(I)V
         2: .line 698
            return
        end local 3 // int length
        end local 2 // int start
        end local 1 // char[] content
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Ljavax/swing/text/AbstractWriter;
            0    3     1  content  [C
            0    3     2    start  I
            0    3     3   length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      content  
      start    
      length   

  private int indexOf(char[], char, int, int);
    descriptor: ([CCII)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // javax.swing.text.AbstractWriter this
        start local 1 // char[] chars
        start local 2 // char sChar
        start local 3 // int startIndex
        start local 4 // int endIndex
         0: .line 705
            goto 4
         1: .line 706
      StackMap locals:
      StackMap stack:
            aload 1 /* chars */
            iload 3 /* startIndex */
            caload
            iload 2 /* sChar */
            if_icmpne 3
         2: .line 707
            iload 3 /* startIndex */
            ireturn
         3: .line 709
      StackMap locals:
      StackMap stack:
            iinc 3 /* startIndex */ 1
         4: .line 705
      StackMap locals:
      StackMap stack:
            iload 3 /* startIndex */
            iload 4 /* endIndex */
            if_icmplt 1
         5: .line 711
            iconst_m1
            ireturn
        end local 4 // int endIndex
        end local 3 // int startIndex
        end local 2 // char sChar
        end local 1 // char[] chars
        end local 0 // javax.swing.text.AbstractWriter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Ljavax/swing/text/AbstractWriter;
            0    6     1       chars  [C
            0    6     2       sChar  C
            0    6     3  startIndex  I
            0    6     4    endIndex  I
    MethodParameters:
            Name  Flags
      chars       
      sChar       
      startIndex  
      endIndex    
}
SourceFile: "AbstractWriter.java"