class sun.lwawt.macosx.HTMLDecodingInputStream extends java.io.InputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.lwawt.macosx.HTMLDecodingInputStream
  super_class: java.io.InputStream
{
  private final java.io.BufferedInputStream bufferedStream;
    descriptor: Ljava/io/BufferedInputStream;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

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

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

  public static final int BYTE_BUFFER_LEN;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 8192

  public static final int CHAR_BUFFER_LEN;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 2730

  private static final java.lang.String FAILURE_MSG;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "Unable to parse HTML description: "

  private static final java.lang.String INVALID_MSG;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: " invalid"

  public void <init>(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // sun.lwawt.macosx.HTMLDecodingInputStream this
        start local 1 // java.io.InputStream bytestream
         0: .line 422
            aload 0 /* this */
            invokespecial java.io.InputStream.<init>:()V
         1: .line 406
            aload 0 /* this */
            iconst_0
            putfield sun.lwawt.macosx.HTMLDecodingInputStream.descriptionParsed:Z
         2: .line 407
            aload 0 /* this */
            iconst_0
            putfield sun.lwawt.macosx.HTMLDecodingInputStream.closed:Z
         3: .line 423
            aload 0 /* this */
            new java.io.BufferedInputStream
            dup
            aload 1 /* bytestream */
            sipush 8192
            invokespecial java.io.BufferedInputStream.<init>:(Ljava/io/InputStream;I)V
            putfield sun.lwawt.macosx.HTMLDecodingInputStream.bufferedStream:Ljava/io/BufferedInputStream;
         4: .line 424
            return
        end local 1 // java.io.InputStream bytestream
        end local 0 // sun.lwawt.macosx.HTMLDecodingInputStream this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lsun/lwawt/macosx/HTMLDecodingInputStream;
            0    5     1  bytestream  Ljava/io/InputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
            Name  Flags
      bytestream  

  private void parseDescription();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=9, args_size=1
        start local 0 // sun.lwawt.macosx.HTMLDecodingInputStream this
         0: .line 427
            aload 0 /* this */
            getfield sun.lwawt.macosx.HTMLDecodingInputStream.bufferedStream:Ljava/io/BufferedInputStream;
            sipush 8192
            invokevirtual java.io.BufferedInputStream.mark:(I)V
         1: .line 429
            new java.io.BufferedReader
            dup
         2: .line 430
            new java.io.InputStreamReader
            dup
            aload 0 /* this */
            getfield sun.lwawt.macosx.HTMLDecodingInputStream.bufferedStream:Ljava/io/BufferedInputStream;
            ldc "UTF-8"
            invokespecial java.io.InputStreamReader.<init>:(Ljava/io/InputStream;Ljava/lang/String;)V
         3: .line 431
            sipush 2730
         4: .line 429
            invokespecial java.io.BufferedReader.<init>:(Ljava/io/Reader;I)V
            astore 1 /* bufferedReader */
        start local 1 // java.io.BufferedReader bufferedReader
         5: .line 432
            aload 1 /* bufferedReader */
            invokevirtual java.io.BufferedReader.readLine:()Ljava/lang/String;
            invokevirtual java.lang.String.trim:()Ljava/lang/String;
            astore 2 /* version */
        start local 2 // java.lang.String version
         6: .line 433
            aload 2 /* version */
            ifnull 7
            aload 2 /* version */
            ldc "Version:"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifne 11
         7: .line 435
      StackMap locals: java.io.BufferedReader java.lang.String
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield sun.lwawt.macosx.HTMLDecodingInputStream.index:I
         8: .line 436
            aload 0 /* this */
            iconst_m1
            putfield sun.lwawt.macosx.HTMLDecodingInputStream.end:I
         9: .line 437
            aload 0 /* this */
            getfield sun.lwawt.macosx.HTMLDecodingInputStream.bufferedStream:Ljava/io/BufferedInputStream;
            invokevirtual java.io.BufferedInputStream.reset:()V
        10: .line 438
            return
        11: .line 443
      StackMap locals:
      StackMap stack:
            iconst_0
            dup
            istore 7 /* endFragment */
        start local 7 // boolean endFragment
        12: dup
            istore 6 /* startFragment */
        start local 6 // boolean startFragment
        13: dup
            istore 5 /* endHTML */
        start local 5 // boolean endHTML
        14: istore 4 /* startHTML */
        start local 4 // boolean startHTML
        15: .line 447
      StackMap locals: sun.lwawt.macosx.HTMLDecodingInputStream java.io.BufferedReader java.lang.String top int int int int
      StackMap stack:
            aload 1 /* bufferedReader */
            invokevirtual java.io.BufferedReader.readLine:()Ljava/lang/String;
            invokevirtual java.lang.String.trim:()Ljava/lang/String;
            astore 3 /* input */
        start local 3 // java.lang.String input
        16: .line 448
            aload 3 /* input */
            ifnonnull 19
        17: .line 449
            aload 0 /* this */
            invokevirtual sun.lwawt.macosx.HTMLDecodingInputStream.close:()V
        18: .line 450
            new java.io.IOException
            dup
            ldc "Unable to parse HTML description: "
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        19: .line 451
      StackMap locals: sun.lwawt.macosx.HTMLDecodingInputStream java.io.BufferedReader java.lang.String java.lang.String int int int int
      StackMap stack:
            aload 3 /* input */
            ldc "StartHTML:"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 32
        20: .line 453
            aload 3 /* input */
            ldc "StartHTML:"
            invokevirtual java.lang.String.length:()I
        21: .line 454
            aload 3 /* input */
            invokevirtual java.lang.String.length:()I
        22: .line 453
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
        23: .line 454
            invokevirtual java.lang.String.trim:()Ljava/lang/String;
        24: .line 452
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/String;)I
            istore 8 /* val */
        start local 8 // int val
        25: .line 455
            iload 8 /* val */
            iflt 29
        26: .line 456
            aload 0 /* this */
            iload 8 /* val */
            putfield sun.lwawt.macosx.HTMLDecodingInputStream.index:I
        27: .line 457
            iconst_1
            istore 4 /* startHTML */
        28: .line 458
            goto 70
      StackMap locals: int
      StackMap stack:
        29: iload 8 /* val */
            iconst_m1
            if_icmpeq 70
        30: .line 459
            aload 0 /* this */
            invokevirtual sun.lwawt.macosx.HTMLDecodingInputStream.close:()V
        31: .line 460
            new java.io.IOException
            dup
            ldc "Unable to parse HTML description: StartHTML: invalid"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 8 // int val
        32: .line 464
      StackMap locals:
      StackMap stack:
            aload 3 /* input */
            ldc "EndHTML:"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 45
        33: .line 466
            aload 3 /* input */
            ldc "EndHTML:"
            invokevirtual java.lang.String.length:()I
        34: .line 467
            aload 3 /* input */
            invokevirtual java.lang.String.length:()I
        35: .line 466
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
        36: .line 467
            invokevirtual java.lang.String.trim:()Ljava/lang/String;
        37: .line 465
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/String;)I
            istore 8 /* val */
        start local 8 // int val
        38: .line 468
            iload 8 /* val */
            iflt 42
        39: .line 469
            aload 0 /* this */
            iload 8 /* val */
            putfield sun.lwawt.macosx.HTMLDecodingInputStream.end:I
        40: .line 470
            iconst_1
            istore 5 /* endHTML */
        41: .line 471
            goto 70
      StackMap locals: int
      StackMap stack:
        42: iload 8 /* val */
            iconst_m1
            if_icmpeq 70
        43: .line 472
            aload 0 /* this */
            invokevirtual sun.lwawt.macosx.HTMLDecodingInputStream.close:()V
        44: .line 473
            new java.io.IOException
            dup
            ldc "Unable to parse HTML description: EndHTML: invalid"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 8 // int val
        45: .line 477
      StackMap locals:
      StackMap stack:
            iload 4 /* startHTML */
            ifne 58
            iload 5 /* endHTML */
            ifne 58
        46: .line 478
            aload 3 /* input */
            ldc "StartFragment:"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 58
        47: .line 479
            aload 0 /* this */
        48: .line 480
            aload 3 /* input */
            ldc "StartFragment:"
            invokevirtual java.lang.String.length:()I
        49: .line 481
            aload 3 /* input */
            invokevirtual java.lang.String.length:()I
        50: .line 480
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
        51: .line 481
            invokevirtual java.lang.String.trim:()Ljava/lang/String;
        52: .line 479
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/String;)I
            putfield sun.lwawt.macosx.HTMLDecodingInputStream.index:I
        53: .line 482
            aload 0 /* this */
            getfield sun.lwawt.macosx.HTMLDecodingInputStream.index:I
            ifge 56
        54: .line 483
            aload 0 /* this */
            invokevirtual sun.lwawt.macosx.HTMLDecodingInputStream.close:()V
        55: .line 484
            new java.io.IOException
            dup
            ldc "Unable to parse HTML description: StartFragment: invalid"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        56: .line 488
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 6 /* startFragment */
        57: .line 489
            goto 70
      StackMap locals:
      StackMap stack:
        58: iload 4 /* startHTML */
            ifne 70
            iload 5 /* endHTML */
            ifne 70
        59: .line 490
            aload 3 /* input */
            ldc "EndFragment:"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 70
        60: .line 491
            aload 0 /* this */
        61: .line 492
            aload 3 /* input */
            ldc "EndFragment:"
            invokevirtual java.lang.String.length:()I
        62: .line 493
            aload 3 /* input */
            invokevirtual java.lang.String.length:()I
        63: .line 492
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
        64: .line 493
            invokevirtual java.lang.String.trim:()Ljava/lang/String;
        65: .line 491
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/String;)I
            putfield sun.lwawt.macosx.HTMLDecodingInputStream.end:I
        66: .line 494
            aload 0 /* this */
            getfield sun.lwawt.macosx.HTMLDecodingInputStream.end:I
            ifge 69
        67: .line 495
            aload 0 /* this */
            invokevirtual sun.lwawt.macosx.HTMLDecodingInputStream.close:()V
        68: .line 496
            new java.io.IOException
            dup
            ldc "Unable to parse HTML description: EndFragment: invalid"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        69: .line 500
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 7 /* endFragment */
        70: .line 502
      StackMap locals:
      StackMap stack:
            iload 4 /* startHTML */
            ifeq 71
            iload 5 /* endHTML */
            ifne 76
        71: .line 503
      StackMap locals:
      StackMap stack:
            iload 6 /* startFragment */
            ifeq 15
            iload 7 /* endFragment */
            ifeq 15
        72: .line 504
            goto 76
        end local 3 // java.lang.String input
      StackMap locals: sun.lwawt.macosx.HTMLDecodingInputStream java.io.BufferedReader java.lang.String top int int int int
      StackMap stack: java.lang.NumberFormatException
        73: astore 8 /* e */
        start local 8 // java.lang.NumberFormatException e
        74: .line 505
            aload 0 /* this */
            invokevirtual sun.lwawt.macosx.HTMLDecodingInputStream.close:()V
        75: .line 506
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unable to parse HTML description: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 8 /* e */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 8 // java.lang.NumberFormatException e
        start local 3 // java.lang.String input
        76: .line 509
      StackMap locals: sun.lwawt.macosx.HTMLDecodingInputStream java.io.BufferedReader java.lang.String java.lang.String int int int int
      StackMap stack:
            aload 0 /* this */
            getfield sun.lwawt.macosx.HTMLDecodingInputStream.bufferedStream:Ljava/io/BufferedInputStream;
            invokevirtual java.io.BufferedInputStream.reset:()V
        77: .line 511
            iconst_0
            istore 8 /* i */
        start local 8 // int i
        78: goto 83
        79: .line 512
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.lwawt.macosx.HTMLDecodingInputStream.bufferedStream:Ljava/io/BufferedInputStream;
            invokevirtual java.io.BufferedInputStream.read:()I
            iconst_m1
            if_icmpne 82
        80: .line 513
            aload 0 /* this */
            invokevirtual sun.lwawt.macosx.HTMLDecodingInputStream.close:()V
        81: .line 514
            new java.io.IOException
            dup
            ldc "Unable to parse HTML description: Byte stream ends in description."
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        82: .line 511
      StackMap locals:
      StackMap stack:
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        83: iload 8 /* i */
            aload 0 /* this */
            getfield sun.lwawt.macosx.HTMLDecodingInputStream.index:I
            if_icmplt 79
        end local 8 // int i
        84: .line 518
            return
        end local 7 // boolean endFragment
        end local 6 // boolean startFragment
        end local 5 // boolean endHTML
        end local 4 // boolean startHTML
        end local 3 // java.lang.String input
        end local 2 // java.lang.String version
        end local 1 // java.io.BufferedReader bufferedReader
        end local 0 // sun.lwawt.macosx.HTMLDecodingInputStream this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   85     0            this  Lsun/lwawt/macosx/HTMLDecodingInputStream;
            5   85     1  bufferedReader  Ljava/io/BufferedReader;
            6   85     2         version  Ljava/lang/String;
           16   73     3           input  Ljava/lang/String;
           76   85     3           input  Ljava/lang/String;
           15   85     4       startHTML  Z
           14   85     5         endHTML  Z
           13   85     6   startFragment  Z
           12   85     7     endFragment  Z
           25   32     8             val  I
           38   45     8             val  I
           74   76     8               e  Ljava/lang/NumberFormatException;
           78   84     8               i  I
      Exception table:
        from    to  target  type
          15    72      73  Class java.lang.NumberFormatException
    Exceptions:
      throws java.io.IOException

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // sun.lwawt.macosx.HTMLDecodingInputStream this
         0: .line 521
            aload 0 /* this */
            getfield sun.lwawt.macosx.HTMLDecodingInputStream.closed:Z
            ifeq 2
         1: .line 522
            new java.io.IOException
            dup
            ldc "Stream closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 525
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.lwawt.macosx.HTMLDecodingInputStream.descriptionParsed:Z
            ifne 5
         3: .line 526
            aload 0 /* this */
            invokevirtual sun.lwawt.macosx.HTMLDecodingInputStream.parseDescription:()V
         4: .line 527
            aload 0 /* this */
            iconst_1
            putfield sun.lwawt.macosx.HTMLDecodingInputStream.descriptionParsed:Z
         5: .line 530
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.lwawt.macosx.HTMLDecodingInputStream.end:I
            iconst_m1
            if_icmpeq 7
            aload 0 /* this */
            getfield sun.lwawt.macosx.HTMLDecodingInputStream.index:I
            aload 0 /* this */
            getfield sun.lwawt.macosx.HTMLDecodingInputStream.end:I
            if_icmplt 7
         6: .line 531
            iconst_m1
            ireturn
         7: .line 534
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.lwawt.macosx.HTMLDecodingInputStream.bufferedStream:Ljava/io/BufferedInputStream;
            invokevirtual java.io.BufferedInputStream.read:()I
            istore 1 /* retval */
        start local 1 // int retval
         8: .line 535
            iload 1 /* retval */
            iconst_m1
            if_icmpne 11
         9: .line 536
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield sun.lwawt.macosx.HTMLDecodingInputStream.end:I
            putfield sun.lwawt.macosx.HTMLDecodingInputStream.index:I
        10: .line 537
            iconst_m1
            ireturn
        11: .line 540
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield sun.lwawt.macosx.HTMLDecodingInputStream.index:I
            iconst_1
            iadd
            putfield sun.lwawt.macosx.HTMLDecodingInputStream.index:I
        12: .line 542
            iload 1 /* retval */
            ireturn
        end local 1 // int retval
        end local 0 // sun.lwawt.macosx.HTMLDecodingInputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lsun/lwawt/macosx/HTMLDecodingInputStream;
            8   13     1  retval  I
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.lwawt.macosx.HTMLDecodingInputStream this
         0: .line 546
            aload 0 /* this */
            getfield sun.lwawt.macosx.HTMLDecodingInputStream.closed:Z
            ifne 3
         1: .line 547
            aload 0 /* this */
            iconst_1
            putfield sun.lwawt.macosx.HTMLDecodingInputStream.closed:Z
         2: .line 548
            aload 0 /* this */
            getfield sun.lwawt.macosx.HTMLDecodingInputStream.bufferedStream:Ljava/io/BufferedInputStream;
            invokevirtual java.io.BufferedInputStream.close:()V
         3: .line 550
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.lwawt.macosx.HTMLDecodingInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/lwawt/macosx/HTMLDecodingInputStream;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "CDataTransferer.java"