public class org.reflections.vfs.SystemFile implements org.reflections.vfs.Vfs$File
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.reflections.vfs.SystemFile
  super_class: java.lang.Object
{
  private final org.reflections.vfs.SystemDir root;
    descriptor: Lorg/reflections/vfs/SystemDir;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.io.File file;
    descriptor: Ljava/io/File;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.reflections.vfs.SystemDir, java.io.File);
    descriptor: (Lorg/reflections/vfs/SystemDir;Ljava/io/File;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.reflections.vfs.SystemFile this
        start local 1 // org.reflections.vfs.SystemDir root
        start local 2 // java.io.File file
         0: .line 12
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 13
            aload 0 /* this */
            aload 1 /* root */
            putfield org.reflections.vfs.SystemFile.root:Lorg/reflections/vfs/SystemDir;
         2: .line 14
            aload 0 /* this */
            aload 2 /* file */
            putfield org.reflections.vfs.SystemFile.file:Ljava/io/File;
         3: .line 15
            return
        end local 2 // java.io.File file
        end local 1 // org.reflections.vfs.SystemDir root
        end local 0 // org.reflections.vfs.SystemFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/reflections/vfs/SystemFile;
            0    4     1  root  Lorg/reflections/vfs/SystemDir;
            0    4     2  file  Ljava/io/File;
    MethodParameters:
      Name  Flags
      root  final
      file  

  public java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.reflections.vfs.SystemFile this
         0: .line 18
            aload 0 /* this */
            getfield org.reflections.vfs.SystemFile.file:Ljava/io/File;
            invokevirtual java.io.File.getName:()Ljava/lang/String;
            areturn
        end local 0 // org.reflections.vfs.SystemFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/reflections/vfs/SystemFile;

  public java.lang.String getRelativePath();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.reflections.vfs.SystemFile this
         0: .line 22
            aload 0 /* this */
            getfield org.reflections.vfs.SystemFile.file:Ljava/io/File;
            invokevirtual java.io.File.getPath:()Ljava/lang/String;
            ldc "\\"
            ldc "/"
            invokevirtual java.lang.String.replace:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/lang/String;
            astore 1 /* filepath */
        start local 1 // java.lang.String filepath
         1: .line 23
            aload 1 /* filepath */
            aload 0 /* this */
            getfield org.reflections.vfs.SystemFile.root:Lorg/reflections/vfs/SystemDir;
            invokevirtual org.reflections.vfs.SystemDir.getPath:()Ljava/lang/String;
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 3
         2: .line 24
            aload 1 /* filepath */
            aload 0 /* this */
            getfield org.reflections.vfs.SystemFile.root:Lorg/reflections/vfs/SystemDir;
            invokevirtual org.reflections.vfs.SystemDir.getPath:()Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            iconst_1
            iadd
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            areturn
         3: .line 27
      StackMap locals: java.lang.String
      StackMap stack:
            aconst_null
            areturn
        end local 1 // java.lang.String filepath
        end local 0 // org.reflections.vfs.SystemFile this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/reflections/vfs/SystemFile;
            1    4     1  filepath  Ljava/lang/String;

  public java.io.InputStream openInputStream();
    descriptor: ()Ljava/io/InputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.reflections.vfs.SystemFile this
         0: .line 32
            new java.io.FileInputStream
            dup
            aload 0 /* this */
            getfield org.reflections.vfs.SystemFile.file:Ljava/io/File;
            invokespecial java.io.FileInputStream.<init>:(Ljava/io/File;)V
         1: areturn
         2: .line 33
      StackMap locals:
      StackMap stack: java.io.FileNotFoundException
            astore 1 /* e */
        start local 1 // java.io.FileNotFoundException e
         3: .line 34
            new java.lang.RuntimeException
            dup
            aload 1 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.io.FileNotFoundException e
        end local 0 // org.reflections.vfs.SystemFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/reflections/vfs/SystemFile;
            3    4     1     e  Ljava/io/FileNotFoundException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.FileNotFoundException

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.reflections.vfs.SystemFile this
         0: .line 40
            aload 0 /* this */
            getfield org.reflections.vfs.SystemFile.file:Ljava/io/File;
            invokevirtual java.io.File.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.reflections.vfs.SystemFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/reflections/vfs/SystemFile;
}
SourceFile: "SystemFile.java"
InnerClasses:
  public abstract File = org.reflections.vfs.Vfs$File of org.reflections.vfs.Vfs