public abstract class org.eclipse.jgit.lib.ObjectInserter$Filter extends org.eclipse.jgit.lib.ObjectInserter
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.eclipse.jgit.lib.ObjectInserter$Filter
  super_class: org.eclipse.jgit.lib.ObjectInserter
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
         0: .line 68
            aload 0 /* this */
            invokespecial org.eclipse.jgit.lib.ObjectInserter.<init>:()V
            return
        end local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/lib/ObjectInserter$Filter;

  protected abstract org.eclipse.jgit.lib.ObjectInserter delegate();
    descriptor: ()Lorg/eclipse/jgit/lib/ObjectInserter;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT

  protected byte[] buffer();
    descriptor: ()[B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
         0: .line 74
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter$Filter.delegate:()Lorg/eclipse/jgit/lib/ObjectInserter;
            invokevirtual org.eclipse.jgit.lib.ObjectInserter.buffer:()[B
            areturn
        end local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/lib/ObjectInserter$Filter;

  public org.eclipse.jgit.lib.ObjectId idFor(int, byte[]);
    descriptor: (I[B)Lorg/eclipse/jgit/lib/ObjectId;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
        start local 1 // int type
        start local 2 // byte[] data
         0: .line 79
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter$Filter.delegate:()Lorg/eclipse/jgit/lib/ObjectInserter;
            iload 1 /* type */
            aload 2 /* data */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter.idFor:(I[B)Lorg/eclipse/jgit/lib/ObjectId;
            areturn
        end local 2 // byte[] data
        end local 1 // int type
        end local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/lib/ObjectInserter$Filter;
            0    1     1  type  I
            0    1     2  data  [B
    MethodParameters:
      Name  Flags
      type  
      data  

  public org.eclipse.jgit.lib.ObjectId idFor(int, byte[], int, int);
    descriptor: (I[BII)Lorg/eclipse/jgit/lib/ObjectId;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
        start local 1 // int type
        start local 2 // byte[] data
        start local 3 // int off
        start local 4 // int len
         0: .line 84
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter$Filter.delegate:()Lorg/eclipse/jgit/lib/ObjectInserter;
            iload 1 /* type */
            aload 2 /* data */
            iload 3 /* off */
            iload 4 /* len */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter.idFor:(I[BII)Lorg/eclipse/jgit/lib/ObjectId;
            areturn
        end local 4 // int len
        end local 3 // int off
        end local 2 // byte[] data
        end local 1 // int type
        end local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/lib/ObjectInserter$Filter;
            0    1     1  type  I
            0    1     2  data  [B
            0    1     3   off  I
            0    1     4   len  I
    MethodParameters:
      Name  Flags
      type  
      data  
      off   
      len   

  public org.eclipse.jgit.lib.ObjectId idFor(int, long, java.io.InputStream);
    descriptor: (IJLjava/io/InputStream;)Lorg/eclipse/jgit/lib/ObjectId;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
        start local 1 // int objectType
        start local 2 // long length
        start local 4 // java.io.InputStream in
         0: .line 90
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter$Filter.delegate:()Lorg/eclipse/jgit/lib/ObjectInserter;
            iload 1 /* objectType */
            lload 2 /* length */
            aload 4 /* in */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter.idFor:(IJLjava/io/InputStream;)Lorg/eclipse/jgit/lib/ObjectId;
            areturn
        end local 4 // java.io.InputStream in
        end local 2 // long length
        end local 1 // int objectType
        end local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/jgit/lib/ObjectInserter$Filter;
            0    1     1  objectType  I
            0    1     2      length  J
            0    1     4          in  Ljava/io/InputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
            Name  Flags
      objectType  
      length      
      in          

  public org.eclipse.jgit.lib.ObjectId idFor(org.eclipse.jgit.lib.TreeFormatter);
    descriptor: (Lorg/eclipse/jgit/lib/TreeFormatter;)Lorg/eclipse/jgit/lib/ObjectId;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
        start local 1 // org.eclipse.jgit.lib.TreeFormatter formatter
         0: .line 95
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter$Filter.delegate:()Lorg/eclipse/jgit/lib/ObjectInserter;
            aload 1 /* formatter */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter.idFor:(Lorg/eclipse/jgit/lib/TreeFormatter;)Lorg/eclipse/jgit/lib/ObjectId;
            areturn
        end local 1 // org.eclipse.jgit.lib.TreeFormatter formatter
        end local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/jgit/lib/ObjectInserter$Filter;
            0    1     1  formatter  Lorg/eclipse/jgit/lib/TreeFormatter;
    MethodParameters:
           Name  Flags
      formatter  

  public org.eclipse.jgit.lib.ObjectId insert(int, byte[]);
    descriptor: (I[B)Lorg/eclipse/jgit/lib/ObjectId;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
        start local 1 // int type
        start local 2 // byte[] data
         0: .line 100
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter$Filter.delegate:()Lorg/eclipse/jgit/lib/ObjectInserter;
            iload 1 /* type */
            aload 2 /* data */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter.insert:(I[B)Lorg/eclipse/jgit/lib/ObjectId;
            areturn
        end local 2 // byte[] data
        end local 1 // int type
        end local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/lib/ObjectInserter$Filter;
            0    1     1  type  I
            0    1     2  data  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      type  
      data  

  public org.eclipse.jgit.lib.ObjectId insert(int, byte[], int, int);
    descriptor: (I[BII)Lorg/eclipse/jgit/lib/ObjectId;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
        start local 1 // int type
        start local 2 // byte[] data
        start local 3 // int off
        start local 4 // int len
         0: .line 106
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter$Filter.delegate:()Lorg/eclipse/jgit/lib/ObjectInserter;
            iload 1 /* type */
            aload 2 /* data */
            iload 3 /* off */
            iload 4 /* len */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter.insert:(I[BII)Lorg/eclipse/jgit/lib/ObjectId;
            areturn
        end local 4 // int len
        end local 3 // int off
        end local 2 // byte[] data
        end local 1 // int type
        end local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/lib/ObjectInserter$Filter;
            0    1     1  type  I
            0    1     2  data  [B
            0    1     3   off  I
            0    1     4   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      type  
      data  
      off   
      len   

  public org.eclipse.jgit.lib.ObjectId insert(int, long, java.io.InputStream);
    descriptor: (IJLjava/io/InputStream;)Lorg/eclipse/jgit/lib/ObjectId;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
        start local 1 // int objectType
        start local 2 // long length
        start local 4 // java.io.InputStream in
         0: .line 112
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter$Filter.delegate:()Lorg/eclipse/jgit/lib/ObjectInserter;
            iload 1 /* objectType */
            lload 2 /* length */
            aload 4 /* in */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter.insert:(IJLjava/io/InputStream;)Lorg/eclipse/jgit/lib/ObjectId;
            areturn
        end local 4 // java.io.InputStream in
        end local 2 // long length
        end local 1 // int objectType
        end local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/eclipse/jgit/lib/ObjectInserter$Filter;
            0    1     1  objectType  I
            0    1     2      length  J
            0    1     4          in  Ljava/io/InputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
            Name  Flags
      objectType  
      length      
      in          

  public org.eclipse.jgit.transport.PackParser newPackParser(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)Lorg/eclipse/jgit/transport/PackParser;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
        start local 1 // java.io.InputStream in
         0: .line 117
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter$Filter.delegate:()Lorg/eclipse/jgit/lib/ObjectInserter;
            aload 1 /* in */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter.newPackParser:(Ljava/io/InputStream;)Lorg/eclipse/jgit/transport/PackParser;
            areturn
        end local 1 // java.io.InputStream in
        end local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/lib/ObjectInserter$Filter;
            0    1     1    in  Ljava/io/InputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      in    

  public org.eclipse.jgit.lib.ObjectReader newReader();
    descriptor: ()Lorg/eclipse/jgit/lib/ObjectReader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
         0: .line 122
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter$Filter.delegate:()Lorg/eclipse/jgit/lib/ObjectInserter;
            invokevirtual org.eclipse.jgit.lib.ObjectInserter.newReader:()Lorg/eclipse/jgit/lib/ObjectReader;
            astore 1 /* dr */
        start local 1 // org.eclipse.jgit.lib.ObjectReader dr
         1: .line 123
            new org.eclipse.jgit.lib.ObjectInserter$Filter$1
            dup
            aload 0 /* this */
            aload 1 /* dr */
            invokespecial org.eclipse.jgit.lib.ObjectInserter$Filter$1.<init>:(Lorg/eclipse/jgit/lib/ObjectInserter$Filter;Lorg/eclipse/jgit/lib/ObjectReader;)V
            areturn
        end local 1 // org.eclipse.jgit.lib.ObjectReader dr
        end local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/lib/ObjectInserter$Filter;
            1    2     1    dr  Lorg/eclipse/jgit/lib/ObjectReader;

  public void flush();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
         0: .line 138
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter$Filter.delegate:()Lorg/eclipse/jgit/lib/ObjectInserter;
            invokevirtual org.eclipse.jgit.lib.ObjectInserter.flush:()V
         1: .line 139
            return
        end local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/lib/ObjectInserter$Filter;
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
         0: .line 143
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.lib.ObjectInserter$Filter.delegate:()Lorg/eclipse/jgit/lib/ObjectInserter;
            invokevirtual org.eclipse.jgit.lib.ObjectInserter.close:()V
         1: .line 144
            return
        end local 0 // org.eclipse.jgit.lib.ObjectInserter$Filter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/lib/ObjectInserter$Filter;
}
SourceFile: "ObjectInserter.java"
NestHost: org.eclipse.jgit.lib.ObjectInserter
InnerClasses:
  public abstract Filter = org.eclipse.jgit.lib.ObjectInserter$Filter of org.eclipse.jgit.lib.ObjectInserter
  org.eclipse.jgit.lib.ObjectInserter$Filter$1