class com.sun.tools.hat.internal.parser.FileReadBuffer implements com.sun.tools.hat.internal.parser.ReadBuffer
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.sun.tools.hat.internal.parser.FileReadBuffer
  super_class: java.lang.Object
{
  private java.io.RandomAccessFile file;
    descriptor: Ljava/io/RandomAccessFile;
    flags: (0x0002) ACC_PRIVATE

  void <init>(java.io.RandomAccessFile);
    descriptor: (Ljava/io/RandomAccessFile;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.tools.hat.internal.parser.FileReadBuffer this
        start local 1 // java.io.RandomAccessFile file
         0: .line 47
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 48
            aload 0 /* this */
            aload 1 /* file */
            putfield com.sun.tools.hat.internal.parser.FileReadBuffer.file:Ljava/io/RandomAccessFile;
         2: .line 49
            return
        end local 1 // java.io.RandomAccessFile file
        end local 0 // com.sun.tools.hat.internal.parser.FileReadBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/tools/hat/internal/parser/FileReadBuffer;
            0    3     1  file  Ljava/io/RandomAccessFile;
    MethodParameters:
      Name  Flags
      file  

  private void seek(long);
    descriptor: (J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.sun.tools.hat.internal.parser.FileReadBuffer this
        start local 1 // long pos
         0: .line 52
            aload 0 /* this */
            getfield com.sun.tools.hat.internal.parser.FileReadBuffer.file:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.getChannel:()Ljava/nio/channels/FileChannel;
            lload 1 /* pos */
            invokevirtual java.nio.channels.FileChannel.position:(J)Ljava/nio/channels/FileChannel;
            pop
         1: .line 53
            return
        end local 1 // long pos
        end local 0 // com.sun.tools.hat.internal.parser.FileReadBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/hat/internal/parser/FileReadBuffer;
            0    2     1   pos  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      pos   

  public synchronized void get(long, byte[]);
    descriptor: (J[B)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // com.sun.tools.hat.internal.parser.FileReadBuffer this
        start local 1 // long pos
        start local 3 // byte[] buf
         0: .line 56
            aload 0 /* this */
            lload 1 /* pos */
            invokevirtual com.sun.tools.hat.internal.parser.FileReadBuffer.seek:(J)V
         1: .line 57
            aload 0 /* this */
            getfield com.sun.tools.hat.internal.parser.FileReadBuffer.file:Ljava/io/RandomAccessFile;
            aload 3 /* buf */
            invokevirtual java.io.RandomAccessFile.read:([B)I
            pop
         2: .line 58
            return
        end local 3 // byte[] buf
        end local 1 // long pos
        end local 0 // com.sun.tools.hat.internal.parser.FileReadBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/tools/hat/internal/parser/FileReadBuffer;
            0    3     1   pos  J
            0    3     3   buf  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      pos   
      buf   

  public synchronized char getChar(long);
    descriptor: (J)C
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.sun.tools.hat.internal.parser.FileReadBuffer this
        start local 1 // long pos
         0: .line 61
            aload 0 /* this */
            lload 1 /* pos */
            invokevirtual com.sun.tools.hat.internal.parser.FileReadBuffer.seek:(J)V
         1: .line 62
            aload 0 /* this */
            getfield com.sun.tools.hat.internal.parser.FileReadBuffer.file:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.readChar:()C
            ireturn
        end local 1 // long pos
        end local 0 // com.sun.tools.hat.internal.parser.FileReadBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/hat/internal/parser/FileReadBuffer;
            0    2     1   pos  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      pos   

  public synchronized byte getByte(long);
    descriptor: (J)B
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.sun.tools.hat.internal.parser.FileReadBuffer this
        start local 1 // long pos
         0: .line 66
            aload 0 /* this */
            lload 1 /* pos */
            invokevirtual com.sun.tools.hat.internal.parser.FileReadBuffer.seek:(J)V
         1: .line 67
            aload 0 /* this */
            getfield com.sun.tools.hat.internal.parser.FileReadBuffer.file:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.read:()I
            i2b
            ireturn
        end local 1 // long pos
        end local 0 // com.sun.tools.hat.internal.parser.FileReadBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/hat/internal/parser/FileReadBuffer;
            0    2     1   pos  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      pos   

  public synchronized short getShort(long);
    descriptor: (J)S
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.sun.tools.hat.internal.parser.FileReadBuffer this
        start local 1 // long pos
         0: .line 71
            aload 0 /* this */
            lload 1 /* pos */
            invokevirtual com.sun.tools.hat.internal.parser.FileReadBuffer.seek:(J)V
         1: .line 72
            aload 0 /* this */
            getfield com.sun.tools.hat.internal.parser.FileReadBuffer.file:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.readShort:()S
            ireturn
        end local 1 // long pos
        end local 0 // com.sun.tools.hat.internal.parser.FileReadBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/hat/internal/parser/FileReadBuffer;
            0    2     1   pos  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      pos   

  public synchronized int getInt(long);
    descriptor: (J)I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.sun.tools.hat.internal.parser.FileReadBuffer this
        start local 1 // long pos
         0: .line 76
            aload 0 /* this */
            lload 1 /* pos */
            invokevirtual com.sun.tools.hat.internal.parser.FileReadBuffer.seek:(J)V
         1: .line 77
            aload 0 /* this */
            getfield com.sun.tools.hat.internal.parser.FileReadBuffer.file:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.readInt:()I
            ireturn
        end local 1 // long pos
        end local 0 // com.sun.tools.hat.internal.parser.FileReadBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/hat/internal/parser/FileReadBuffer;
            0    2     1   pos  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      pos   

  public synchronized long getLong(long);
    descriptor: (J)J
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.sun.tools.hat.internal.parser.FileReadBuffer this
        start local 1 // long pos
         0: .line 81
            aload 0 /* this */
            lload 1 /* pos */
            invokevirtual com.sun.tools.hat.internal.parser.FileReadBuffer.seek:(J)V
         1: .line 82
            aload 0 /* this */
            getfield com.sun.tools.hat.internal.parser.FileReadBuffer.file:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.readLong:()J
            lreturn
        end local 1 // long pos
        end local 0 // com.sun.tools.hat.internal.parser.FileReadBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/hat/internal/parser/FileReadBuffer;
            0    2     1   pos  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      pos   
}
SourceFile: "FileReadBuffer.java"