public class org.apache.commons.vfs2.provider.ram.RamFileOutputStream extends java.io.OutputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.vfs2.provider.ram.RamFileOutputStream
  super_class: java.io.OutputStream
{
  protected org.apache.commons.vfs2.provider.ram.RamFileObject file;
    descriptor: Lorg/apache/commons/vfs2/provider/ram/RamFileObject;
    flags: (0x0004) ACC_PROTECTED

  protected byte[] buffer1;
    descriptor: [B
    flags: (0x0004) ACC_PROTECTED

  protected boolean closed;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  private java.io.IOException exception;
    descriptor: Ljava/io/IOException;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(org.apache.commons.vfs2.provider.ram.RamFileObject);
    descriptor: (Lorg/apache/commons/vfs2/provider/ram/RamFileObject;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.vfs2.provider.ram.RamFileOutputStream this
        start local 1 // org.apache.commons.vfs2.provider.ram.RamFileObject file
         0: .line 48
            aload 0 /* this */
            invokespecial java.io.OutputStream.<init>:()V
         1: .line 37
            aload 0 /* this */
            iconst_1
            newarray 8
            putfield org.apache.commons.vfs2.provider.ram.RamFileOutputStream.buffer1:[B
         2: .line 40
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.vfs2.provider.ram.RamFileOutputStream.closed:Z
         3: .line 49
            aload 0 /* this */
            aload 1 /* file */
            putfield org.apache.commons.vfs2.provider.ram.RamFileOutputStream.file:Lorg/apache/commons/vfs2/provider/ram/RamFileObject;
         4: .line 50
            return
        end local 1 // org.apache.commons.vfs2.provider.ram.RamFileObject file
        end local 0 // org.apache.commons.vfs2.provider.ram.RamFileOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/vfs2/provider/ram/RamFileOutputStream;
            0    5     1  file  Lorg/apache/commons/vfs2/provider/ram/RamFileObject;
    MethodParameters:
      Name  Flags
      file  final

  public void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=4
        start local 0 // org.apache.commons.vfs2.provider.ram.RamFileOutputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 59
            aload 0 /* this */
            getfield org.apache.commons.vfs2.provider.ram.RamFileOutputStream.file:Lorg/apache/commons/vfs2/provider/ram/RamFileObject;
            invokevirtual org.apache.commons.vfs2.provider.ram.RamFileObject.getData:()Lorg/apache/commons/vfs2/provider/ram/RamFileData;
            astore 4 /* data */
        start local 4 // org.apache.commons.vfs2.provider.ram.RamFileData data
         1: .line 60
            aload 4 /* data */
            invokevirtual org.apache.commons.vfs2.provider.ram.RamFileData.size:()I
            istore 5 /* size */
        start local 5 // int size
         2: .line 61
            iload 5 /* size */
            iload 3 /* len */
            iadd
            istore 6 /* newSize */
        start local 6 // int newSize
         3: .line 64
            aload 0 /* this */
            getfield org.apache.commons.vfs2.provider.ram.RamFileOutputStream.file:Lorg/apache/commons/vfs2/provider/ram/RamFileObject;
            iload 6 /* newSize */
            i2l
            invokevirtual org.apache.commons.vfs2.provider.ram.RamFileObject.resize:(J)V
         4: .line 65
            goto 8
      StackMap locals: org.apache.commons.vfs2.provider.ram.RamFileOutputStream byte[] int int org.apache.commons.vfs2.provider.ram.RamFileData int int
      StackMap stack: java.io.IOException
         5: astore 7 /* e */
        start local 7 // java.io.IOException e
         6: .line 66
            aload 0 /* this */
            aload 7 /* e */
            putfield org.apache.commons.vfs2.provider.ram.RamFileOutputStream.exception:Ljava/io/IOException;
         7: .line 67
            aload 7 /* e */
            athrow
        end local 7 // java.io.IOException e
         8: .line 69
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            iload 2 /* off */
            aload 4 /* data */
            invokevirtual org.apache.commons.vfs2.provider.ram.RamFileData.getContent:()[B
            iload 5 /* size */
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 70
            return
        end local 6 // int newSize
        end local 5 // int size
        end local 4 // org.apache.commons.vfs2.provider.ram.RamFileData data
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // org.apache.commons.vfs2.provider.ram.RamFileOutputStream this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lorg/apache/commons/vfs2/provider/ram/RamFileOutputStream;
            0   10     1        b  [B
            0   10     2      off  I
            0   10     3      len  I
            1   10     4     data  Lorg/apache/commons/vfs2/provider/ram/RamFileData;
            2   10     5     size  I
            3   10     6  newSize  I
            6    8     7        e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           3     4       5  Class java.io.IOException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     final
      off   final
      len   final

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.vfs2.provider.ram.RamFileOutputStream this
        start local 1 // int b
         0: .line 79
            aload 0 /* this */
            getfield org.apache.commons.vfs2.provider.ram.RamFileOutputStream.buffer1:[B
            iconst_0
            iload 1 /* b */
            i2b
            bastore
         1: .line 80
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.vfs2.provider.ram.RamFileOutputStream.buffer1:[B
            invokevirtual org.apache.commons.vfs2.provider.ram.RamFileOutputStream.write:([B)V
         2: .line 81
            return
        end local 1 // int b
        end local 0 // org.apache.commons.vfs2.provider.ram.RamFileOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/vfs2/provider/ram/RamFileOutputStream;
            0    3     1     b  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     final

  public void flush();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // org.apache.commons.vfs2.provider.ram.RamFileOutputStream this
         0: .line 85
            return
        end local 0 // org.apache.commons.vfs2.provider.ram.RamFileOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/vfs2/provider/ram/RamFileOutputStream;
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.commons.vfs2.provider.ram.RamFileOutputStream this
         0: .line 89
            aload 0 /* this */
            getfield org.apache.commons.vfs2.provider.ram.RamFileOutputStream.closed:Z
            ifeq 2
         1: .line 90
            return
         2: .line 93
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.vfs2.provider.ram.RamFileOutputStream.exception:Ljava/io/IOException;
            ifnull 4
         3: .line 94
            aload 0 /* this */
            getfield org.apache.commons.vfs2.provider.ram.RamFileOutputStream.exception:Ljava/io/IOException;
            athrow
         4: .line 97
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.vfs2.provider.ram.RamFileOutputStream.closed:Z
         5: .line 99
            aload 0 /* this */
            getfield org.apache.commons.vfs2.provider.ram.RamFileOutputStream.file:Lorg/apache/commons/vfs2/provider/ram/RamFileObject;
            invokevirtual org.apache.commons.vfs2.provider.ram.RamFileObject.endOutput:()V
         6: .line 100
            goto 9
      StackMap locals:
      StackMap stack: java.lang.Exception
         7: astore 1 /* e */
        start local 1 // java.lang.Exception e
         8: .line 101
            new org.apache.commons.vfs2.FileSystemException
            dup
            aload 1 /* e */
            invokespecial org.apache.commons.vfs2.FileSystemException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.Exception e
         9: .line 103
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.commons.vfs2.provider.ram.RamFileOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/apache/commons/vfs2/provider/ram/RamFileOutputStream;
            8    9     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           4     6       7  Class java.lang.Exception
    Exceptions:
      throws java.io.IOException
}
SourceFile: "RamFileOutputStream.java"