public class sun.jvm.hotspot.debugger.RandomAccessFileDataSource implements sun.jvm.hotspot.debugger.DataSource
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.jvm.hotspot.debugger.RandomAccessFileDataSource
  super_class: java.lang.Object
{
  private java.io.RandomAccessFile file;
    descriptor: Ljava/io/RandomAccessFile;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(java.io.RandomAccessFile);
    descriptor: (Ljava/io/RandomAccessFile;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.debugger.RandomAccessFileDataSource this
        start local 1 // java.io.RandomAccessFile file
         0: .line 31
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 32
            aload 0 /* this */
            aload 1 /* file */
            putfield sun.jvm.hotspot.debugger.RandomAccessFileDataSource.file:Ljava/io/RandomAccessFile;
         2: .line 33
            return
        end local 1 // java.io.RandomAccessFile file
        end local 0 // sun.jvm.hotspot.debugger.RandomAccessFileDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/jvm/hotspot/debugger/RandomAccessFileDataSource;
            0    3     1  file  Ljava/io/RandomAccessFile;
    MethodParameters:
      Name  Flags
      file  

  public byte readByte();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.RandomAccessFileDataSource this
         0: .line 35
            aload 0 /* this */
            getfield sun.jvm.hotspot.debugger.RandomAccessFileDataSource.file:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.readByte:()B
            ireturn
        end local 0 // sun.jvm.hotspot.debugger.RandomAccessFileDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/debugger/RandomAccessFileDataSource;
    Exceptions:
      throws java.io.IOException

  public short readShort();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.RandomAccessFileDataSource this
         0: .line 36
            aload 0 /* this */
            getfield sun.jvm.hotspot.debugger.RandomAccessFileDataSource.file:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.readShort:()S
            ireturn
        end local 0 // sun.jvm.hotspot.debugger.RandomAccessFileDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/debugger/RandomAccessFileDataSource;
    Exceptions:
      throws java.io.IOException

  public int readInt();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.RandomAccessFileDataSource this
         0: .line 37
            aload 0 /* this */
            getfield sun.jvm.hotspot.debugger.RandomAccessFileDataSource.file:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.readInt:()I
            ireturn
        end local 0 // sun.jvm.hotspot.debugger.RandomAccessFileDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/debugger/RandomAccessFileDataSource;
    Exceptions:
      throws java.io.IOException

  public long readLong();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.RandomAccessFileDataSource this
         0: .line 38
            aload 0 /* this */
            getfield sun.jvm.hotspot.debugger.RandomAccessFileDataSource.file:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.readLong:()J
            lreturn
        end local 0 // sun.jvm.hotspot.debugger.RandomAccessFileDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/debugger/RandomAccessFileDataSource;
    Exceptions:
      throws java.io.IOException

  public int read(byte[]);
    descriptor: ([B)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.debugger.RandomAccessFileDataSource this
        start local 1 // byte[] b
         0: .line 39
            aload 0 /* this */
            getfield sun.jvm.hotspot.debugger.RandomAccessFileDataSource.file:Ljava/io/RandomAccessFile;
            aload 1 /* b */
            invokevirtual java.io.RandomAccessFile.read:([B)I
            ireturn
        end local 1 // byte[] b
        end local 0 // sun.jvm.hotspot.debugger.RandomAccessFileDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/debugger/RandomAccessFileDataSource;
            0    1     1     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public void seek(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.jvm.hotspot.debugger.RandomAccessFileDataSource this
        start local 1 // long pos
         0: .line 40
            aload 0 /* this */
            getfield sun.jvm.hotspot.debugger.RandomAccessFileDataSource.file:Ljava/io/RandomAccessFile;
            lload 1 /* pos */
            invokevirtual java.io.RandomAccessFile.seek:(J)V
            return
        end local 1 // long pos
        end local 0 // sun.jvm.hotspot.debugger.RandomAccessFileDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/debugger/RandomAccessFileDataSource;
            0    1     1   pos  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      pos   

  public long getFilePointer();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.RandomAccessFileDataSource this
         0: .line 41
            aload 0 /* this */
            getfield sun.jvm.hotspot.debugger.RandomAccessFileDataSource.file:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.getFilePointer:()J
            lreturn
        end local 0 // sun.jvm.hotspot.debugger.RandomAccessFileDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/debugger/RandomAccessFileDataSource;
    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 // sun.jvm.hotspot.debugger.RandomAccessFileDataSource this
         0: .line 42
            aload 0 /* this */
            getfield sun.jvm.hotspot.debugger.RandomAccessFileDataSource.file:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.close:()V
            return
        end local 0 // sun.jvm.hotspot.debugger.RandomAccessFileDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/debugger/RandomAccessFileDataSource;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "RandomAccessFileDataSource.java"