public class java.io.PipedWriter extends java.io.Writer
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: java.io.PipedWriter
  super_class: java.io.Writer
{
  private java.io.PipedReader sink;
    descriptor: Ljava/io/PipedReader;
    flags: (0x0002) ACC_PRIVATE

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

  public void <init>(java.io.PipedReader);
    descriptor: (Ljava/io/PipedReader;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.PipedWriter this
        start local 1 // java.io.PipedReader snk
         0: .line 58
            aload 0 /* this */
            invokespecial java.io.Writer.<init>:()V
         1: .line 48
            aload 0 /* this */
            iconst_0
            putfield java.io.PipedWriter.closed:Z
         2: .line 59
            aload 0 /* this */
            aload 1 /* snk */
            invokevirtual java.io.PipedWriter.connect:(Ljava/io/PipedReader;)V
         3: .line 60
            return
        end local 1 // java.io.PipedReader snk
        end local 0 // java.io.PipedWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/io/PipedWriter;
            0    4     1   snk  Ljava/io/PipedReader;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      snk   

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.io.PipedWriter this
         0: .line 70
            aload 0 /* this */
            invokespecial java.io.Writer.<init>:()V
         1: .line 48
            aload 0 /* this */
            iconst_0
            putfield java.io.PipedWriter.closed:Z
         2: .line 71
            return
        end local 0 // java.io.PipedWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/io/PipedWriter;

  public synchronized void connect(java.io.PipedReader);
    descriptor: (Ljava/io/PipedReader;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.io.PipedWriter this
        start local 1 // java.io.PipedReader snk
         0: .line 92
            aload 1 /* snk */
            ifnonnull 2
         1: .line 93
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 94
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.PipedWriter.sink:Ljava/io/PipedReader;
            ifnonnull 3
            aload 1 /* snk */
            getfield java.io.PipedReader.connected:Z
            ifeq 4
         3: .line 95
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
            ldc "Already connected"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 96
      StackMap locals:
      StackMap stack:
            aload 1 /* snk */
            getfield java.io.PipedReader.closedByReader:Z
            ifne 5
            aload 0 /* this */
            getfield java.io.PipedWriter.closed:Z
            ifeq 6
         5: .line 97
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
            ldc "Pipe closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 100
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* snk */
            putfield java.io.PipedWriter.sink:Ljava/io/PipedReader;
         7: .line 101
            aload 1 /* snk */
            iconst_m1
            putfield java.io.PipedReader.in:I
         8: .line 102
            aload 1 /* snk */
            iconst_0
            putfield java.io.PipedReader.out:I
         9: .line 103
            aload 1 /* snk */
            iconst_1
            putfield java.io.PipedReader.connected:Z
        10: .line 104
            return
        end local 1 // java.io.PipedReader snk
        end local 0 // java.io.PipedWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Ljava/io/PipedWriter;
            0   11     1   snk  Ljava/io/PipedReader;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      snk   

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.io.PipedWriter this
        start local 1 // int c
         0: .line 121
            aload 0 /* this */
            getfield java.io.PipedWriter.sink:Ljava/io/PipedReader;
            ifnonnull 2
         1: .line 122
            new java.io.IOException
            dup
            ldc "Pipe not connected"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 124
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.PipedWriter.sink:Ljava/io/PipedReader;
            iload 1 /* c */
            invokevirtual java.io.PipedReader.receive:(I)V
         3: .line 125
            return
        end local 1 // int c
        end local 0 // java.io.PipedWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/io/PipedWriter;
            0    4     1     c  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      c     

  public void write(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // java.io.PipedWriter this
        start local 1 // char[] cbuf
        start local 2 // int off
        start local 3 // int len
         0: .line 145
            aload 0 /* this */
            getfield java.io.PipedWriter.sink:Ljava/io/PipedReader;
            ifnonnull 2
         1: .line 146
            new java.io.IOException
            dup
            ldc "Pipe not connected"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 147
      StackMap locals:
      StackMap stack:
            iload 2 /* off */
            iload 3 /* len */
            ior
            iload 2 /* off */
            iload 3 /* len */
            iadd
            ior
            aload 1 /* cbuf */
            arraylength
            iload 2 /* off */
            iload 3 /* len */
            iadd
            isub
            ior
            ifge 4
         3: .line 148
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         4: .line 150
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.PipedWriter.sink:Ljava/io/PipedReader;
            aload 1 /* cbuf */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.PipedReader.receive:([CII)V
         5: .line 151
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // char[] cbuf
        end local 0 // java.io.PipedWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/io/PipedWriter;
            0    6     1  cbuf  [C
            0    6     2   off  I
            0    6     3   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  
      off   
      len   

  public synchronized void flush();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.io.PipedWriter this
         0: .line 161
            aload 0 /* this */
            getfield java.io.PipedWriter.sink:Ljava/io/PipedReader;
            ifnull 9
         1: .line 162
            aload 0 /* this */
            getfield java.io.PipedWriter.sink:Ljava/io/PipedReader;
            getfield java.io.PipedReader.closedByReader:Z
            ifne 2
            aload 0 /* this */
            getfield java.io.PipedWriter.closed:Z
            ifeq 3
         2: .line 163
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
            ldc "Pipe closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 165
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.PipedWriter.sink:Ljava/io/PipedReader;
            dup
            astore 1
            monitorenter
         4: .line 166
            aload 0 /* this */
            getfield java.io.PipedWriter.sink:Ljava/io/PipedReader;
            invokevirtual java.lang.Object.notifyAll:()V
         5: .line 165
            aload 1
            monitorexit
         6: goto 9
      StackMap locals: java.io.PipedWriter java.io.PipedReader
      StackMap stack: java.lang.Throwable
         7: aload 1
            monitorexit
         8: athrow
         9: .line 169
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.io.PipedWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Ljava/io/PipedWriter;
      Exception table:
        from    to  target  type
           4     6       7  any
           7     8       7  any
    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 // java.io.PipedWriter this
         0: .line 179
            aload 0 /* this */
            iconst_1
            putfield java.io.PipedWriter.closed:Z
         1: .line 180
            aload 0 /* this */
            getfield java.io.PipedWriter.sink:Ljava/io/PipedReader;
            ifnull 3
         2: .line 181
            aload 0 /* this */
            getfield java.io.PipedWriter.sink:Ljava/io/PipedReader;
            invokevirtual java.io.PipedReader.receivedLast:()V
         3: .line 183
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.io.PipedWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/io/PipedWriter;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "PipedWriter.java"