public abstract class org.apache.commons.compress.archivers.ArchiveOutputStream extends java.io.OutputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.apache.commons.compress.archivers.ArchiveOutputStream
  super_class: java.io.OutputStream
{
  private final byte[] oneByte;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static final int BYTE_MASK;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 255

  private long bytesWritten;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.compress.archivers.ArchiveOutputStream this
         0: .line 47
            aload 0 /* this */
            invokespecial java.io.OutputStream.<init>:()V
         1: .line 50
            aload 0 /* this */
            iconst_1
            newarray 8
            putfield org.apache.commons.compress.archivers.ArchiveOutputStream.oneByte:[B
         2: .line 54
            aload 0 /* this */
            lconst_0
            putfield org.apache.commons.compress.archivers.ArchiveOutputStream.bytesWritten:J
         3: .line 47
            return
        end local 0 // org.apache.commons.compress.archivers.ArchiveOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/compress/archivers/ArchiveOutputStream;

  public abstract void putArchiveEntry(org.apache.commons.compress.archivers.ArchiveEntry);
    descriptor: (Lorg/apache/commons/compress/archivers/ArchiveEntry;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      entry  

  public abstract void closeArchiveEntry();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void finish();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract org.apache.commons.compress.archivers.ArchiveEntry createArchiveEntry(java.io.File, java.lang.String);
    descriptor: (Ljava/io/File;Ljava/lang/String;)Lorg/apache/commons/compress/archivers/ArchiveEntry;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      inputFile  
      entryName  

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.compress.archivers.ArchiveOutputStream this
        start local 1 // int b
         0: .line 108
            aload 0 /* this */
            getfield org.apache.commons.compress.archivers.ArchiveOutputStream.oneByte:[B
            iconst_0
            iload 1 /* b */
            sipush 255
            iand
            i2b
            bastore
         1: .line 109
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.compress.archivers.ArchiveOutputStream.oneByte:[B
            iconst_0
            iconst_1
            invokevirtual org.apache.commons.compress.archivers.ArchiveOutputStream.write:([BII)V
         2: .line 110
            return
        end local 1 // int b
        end local 0 // org.apache.commons.compress.archivers.ArchiveOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/compress/archivers/ArchiveOutputStream;
            0    3     1     b  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     final

  protected void count(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.compress.archivers.ArchiveOutputStream this
        start local 1 // int written
         0: .line 119
            aload 0 /* this */
            iload 1 /* written */
            i2l
            invokevirtual org.apache.commons.compress.archivers.ArchiveOutputStream.count:(J)V
         1: .line 120
            return
        end local 1 // int written
        end local 0 // org.apache.commons.compress.archivers.ArchiveOutputStream this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/apache/commons/compress/archivers/ArchiveOutputStream;
            0    2     1  written  I
    MethodParameters:
         Name  Flags
      written  final

  protected void count(long);
    descriptor: (J)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.apache.commons.compress.archivers.ArchiveOutputStream this
        start local 1 // long written
         0: .line 130
            lload 1 /* written */
            ldc -1
            lcmp
            ifeq 2
         1: .line 131
            aload 0 /* this */
            dup
            getfield org.apache.commons.compress.archivers.ArchiveOutputStream.bytesWritten:J
            lload 1 /* written */
            ladd
            putfield org.apache.commons.compress.archivers.ArchiveOutputStream.bytesWritten:J
         2: .line 133
      StackMap locals:
      StackMap stack:
            return
        end local 1 // long written
        end local 0 // org.apache.commons.compress.archivers.ArchiveOutputStream this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/apache/commons/compress/archivers/ArchiveOutputStream;
            0    3     1  written  J
    MethodParameters:
         Name  Flags
      written  final

  public int getCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.compress.archivers.ArchiveOutputStream this
         0: .line 143
            aload 0 /* this */
            getfield org.apache.commons.compress.archivers.ArchiveOutputStream.bytesWritten:J
            l2i
            ireturn
        end local 0 // org.apache.commons.compress.archivers.ArchiveOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/compress/archivers/ArchiveOutputStream;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()

  public long getBytesWritten();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.compress.archivers.ArchiveOutputStream this
         0: .line 152
            aload 0 /* this */
            getfield org.apache.commons.compress.archivers.ArchiveOutputStream.bytesWritten:J
            lreturn
        end local 0 // org.apache.commons.compress.archivers.ArchiveOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/compress/archivers/ArchiveOutputStream;

  public boolean canWriteEntryData(org.apache.commons.compress.archivers.ArchiveEntry);
    descriptor: (Lorg/apache/commons/compress/archivers/ArchiveEntry;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.apache.commons.compress.archivers.ArchiveOutputStream this
        start local 1 // org.apache.commons.compress.archivers.ArchiveEntry archiveEntry
         0: .line 167
            iconst_1
            ireturn
        end local 1 // org.apache.commons.compress.archivers.ArchiveEntry archiveEntry
        end local 0 // org.apache.commons.compress.archivers.ArchiveOutputStream this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/apache/commons/compress/archivers/ArchiveOutputStream;
            0    1     1  archiveEntry  Lorg/apache/commons/compress/archivers/ArchiveEntry;
    MethodParameters:
              Name  Flags
      archiveEntry  final
}
SourceFile: "ArchiveOutputStream.java"