public class org.eclipse.jgit.transport.PackedObjectInfo extends org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jgit.transport.PackedObjectInfo
  super_class: org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry
{
  private long offset;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

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

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

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

  void <init>(long, int, org.eclipse.jgit.lib.AnyObjectId);
    descriptor: (JILorg/eclipse/jgit/lib/AnyObjectId;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // org.eclipse.jgit.transport.PackedObjectInfo this
        start local 1 // long headerOffset
        start local 3 // int packedCRC
        start local 4 // org.eclipse.jgit.lib.AnyObjectId id
         0: .line 36
            aload 0 /* this */
            aload 4 /* id */
            invokespecial org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry.<init>:(Lorg/eclipse/jgit/lib/AnyObjectId;)V
         1: .line 30
            aload 0 /* this */
            iconst_m1
            putfield org.eclipse.jgit.transport.PackedObjectInfo.type:I
         2: .line 37
            aload 0 /* this */
            lload 1 /* headerOffset */
            putfield org.eclipse.jgit.transport.PackedObjectInfo.offset:J
         3: .line 38
            aload 0 /* this */
            iload 3 /* packedCRC */
            putfield org.eclipse.jgit.transport.PackedObjectInfo.crc:I
         4: .line 39
            return
        end local 4 // org.eclipse.jgit.lib.AnyObjectId id
        end local 3 // int packedCRC
        end local 1 // long headerOffset
        end local 0 // org.eclipse.jgit.transport.PackedObjectInfo this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0          this  Lorg/eclipse/jgit/transport/PackedObjectInfo;
            0    5     1  headerOffset  J
            0    5     3     packedCRC  I
            0    5     4            id  Lorg/eclipse/jgit/lib/AnyObjectId;
    MethodParameters:
              Name  Flags
      headerOffset  final
      packedCRC     final
      id            final

  public void <init>(org.eclipse.jgit.lib.AnyObjectId);
    descriptor: (Lorg/eclipse/jgit/lib/AnyObjectId;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.transport.PackedObjectInfo this
        start local 1 // org.eclipse.jgit.lib.AnyObjectId id
         0: .line 48
            aload 0 /* this */
            aload 1 /* id */
            invokespecial org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry.<init>:(Lorg/eclipse/jgit/lib/AnyObjectId;)V
         1: .line 30
            aload 0 /* this */
            iconst_m1
            putfield org.eclipse.jgit.transport.PackedObjectInfo.type:I
         2: .line 49
            return
        end local 1 // org.eclipse.jgit.lib.AnyObjectId id
        end local 0 // org.eclipse.jgit.transport.PackedObjectInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jgit/transport/PackedObjectInfo;
            0    3     1    id  Lorg/eclipse/jgit/lib/AnyObjectId;
    MethodParameters:
      Name  Flags
      id    

  public long getOffset();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.transport.PackedObjectInfo this
         0: .line 58
            aload 0 /* this */
            getfield org.eclipse.jgit.transport.PackedObjectInfo.offset:J
            lreturn
        end local 0 // org.eclipse.jgit.transport.PackedObjectInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/transport/PackedObjectInfo;

  public void setOffset(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.jgit.transport.PackedObjectInfo this
        start local 1 // long offset
         0: .line 68
            aload 0 /* this */
            lload 1 /* offset */
            putfield org.eclipse.jgit.transport.PackedObjectInfo.offset:J
         1: .line 69
            return
        end local 1 // long offset
        end local 0 // org.eclipse.jgit.transport.PackedObjectInfo this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/jgit/transport/PackedObjectInfo;
            0    2     1  offset  J
    MethodParameters:
        Name  Flags
      offset  

  public int getCRC();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.transport.PackedObjectInfo this
         0: .line 77
            aload 0 /* this */
            getfield org.eclipse.jgit.transport.PackedObjectInfo.crc:I
            ireturn
        end local 0 // org.eclipse.jgit.transport.PackedObjectInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/transport/PackedObjectInfo;

  public void setCRC(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.transport.PackedObjectInfo this
        start local 1 // int crc
         0: .line 89
            aload 0 /* this */
            iload 1 /* crc */
            putfield org.eclipse.jgit.transport.PackedObjectInfo.crc:I
         1: .line 90
            return
        end local 1 // int crc
        end local 0 // org.eclipse.jgit.transport.PackedObjectInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/transport/PackedObjectInfo;
            0    2     1   crc  I
    MethodParameters:
      Name  Flags
      crc   

  public int getType();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.transport.PackedObjectInfo this
         0: .line 100
            aload 0 /* this */
            getfield org.eclipse.jgit.transport.PackedObjectInfo.type:I
            ireturn
        end local 0 // org.eclipse.jgit.transport.PackedObjectInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/transport/PackedObjectInfo;

  public void setType(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.transport.PackedObjectInfo this
        start local 1 // int type
         0: .line 111
            aload 0 /* this */
            iload 1 /* type */
            putfield org.eclipse.jgit.transport.PackedObjectInfo.type:I
         1: .line 112
            return
        end local 1 // int type
        end local 0 // org.eclipse.jgit.transport.PackedObjectInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/transport/PackedObjectInfo;
            0    2     1  type  I
    MethodParameters:
      Name  Flags
      type  

  void setSize(long);
    descriptor: (J)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.jgit.transport.PackedObjectInfo this
        start local 1 // long sizeBeforeInflating
         0: .line 115
            aload 0 /* this */
            lload 1 /* sizeBeforeInflating */
            putfield org.eclipse.jgit.transport.PackedObjectInfo.sizeBeforeInflating:J
         1: .line 116
            return
        end local 1 // long sizeBeforeInflating
        end local 0 // org.eclipse.jgit.transport.PackedObjectInfo this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    2     0                 this  Lorg/eclipse/jgit/transport/PackedObjectInfo;
            0    2     1  sizeBeforeInflating  J
    MethodParameters:
                     Name  Flags
      sizeBeforeInflating  

  long getSize();
    descriptor: ()J
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.transport.PackedObjectInfo this
         0: .line 119
            aload 0 /* this */
            getfield org.eclipse.jgit.transport.PackedObjectInfo.sizeBeforeInflating:J
            lreturn
        end local 0 // org.eclipse.jgit.transport.PackedObjectInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/transport/PackedObjectInfo;
}
SourceFile: "PackedObjectInfo.java"
InnerClasses:
  public abstract Entry = org.eclipse.jgit.lib.ObjectIdOwnerMap$Entry of org.eclipse.jgit.lib.ObjectIdOwnerMap