public abstract class org.jf.baksmali.DexInputCommand extends org.jf.util.jcommander.Command
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.jf.baksmali.DexInputCommand
  super_class: org.jf.util.jcommander.Command
{
  public int apiLevel;
    descriptor: I
    flags: (0x0001) ACC_PUBLIC
    RuntimeVisibleAnnotations: 
      com.beust.jcommander.Parameter(names = {"-a", "--api"}, description = "The numeric api level of the file being disassembled.")
      org.jf.util.jcommander.ExtendedParameter(argumentNames = {"api"})

  protected java.util.List<java.lang.String> inputList;
    descriptor: Ljava/util/List;
    flags: (0x0004) ACC_PROTECTED
    Signature: Ljava/util/List<Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      com.beust.jcommander.Parameter(description = "A dex/apk/oat/odex file. For apk or oat files that contain multiple dex files, you can specify the specific entry to use as if the apk/oat file was a directory. e.g. \"app.apk/classes2.dex\". For more information, see \"baksmali help input\".")
      org.jf.util.jcommander.ExtendedParameter(argumentNames = {"file"})

  protected java.io.File inputFile;
    descriptor: Ljava/io/File;
    flags: (0x0004) ACC_PROTECTED

  protected java.lang.String inputEntry;
    descriptor: Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED

  protected org.jf.dexlib2.iface.MultiDexContainer$DexEntry<? extends org.jf.dexlib2.dexbacked.DexBackedDexFile> dexEntry;
    descriptor: Lorg/jf/dexlib2/iface/MultiDexContainer$DexEntry;
    flags: (0x0004) ACC_PROTECTED
    Signature: Lorg/jf/dexlib2/iface/MultiDexContainer$DexEntry<+Lorg/jf/dexlib2/dexbacked/DexBackedDexFile;>;

  protected org.jf.dexlib2.dexbacked.DexBackedDexFile dexFile;
    descriptor: Lorg/jf/dexlib2/dexbacked/DexBackedDexFile;
    flags: (0x0004) ACC_PROTECTED

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 54
            ldc Lorg/jf/baksmali/DexInputCommand;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.jf.baksmali.DexInputCommand.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.util.List<com.beust.jcommander.JCommander>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jf.baksmali.DexInputCommand this
        start local 1 // java.util.List commandAncestors
         0: .line 73
            aload 0 /* this */
            aload 1 /* commandAncestors */
            invokespecial org.jf.util.jcommander.Command.<init>:(Ljava/util/List;)V
         1: .line 59
            aload 0 /* this */
            iconst_m1
            putfield org.jf.baksmali.DexInputCommand.apiLevel:I
         2: .line 65
            aload 0 /* this */
            invokestatic com.google.common.collect.Lists.newArrayList:()Ljava/util/ArrayList;
            putfield org.jf.baksmali.DexInputCommand.inputList:Ljava/util/List;
         3: .line 74
            return
        end local 1 // java.util.List commandAncestors
        end local 0 // org.jf.baksmali.DexInputCommand this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    4     0              this  Lorg/jf/baksmali/DexInputCommand;
            0    4     1  commandAncestors  Ljava/util/List<Lcom/beust/jcommander/JCommander;>;
    Signature: (Ljava/util/List<Lcom/beust/jcommander/JCommander;>;)V
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        javax.annotation.Nonnull()
    RuntimeVisibleParameterAnnotations: 
      0:
        javax.annotation.Nonnull()
    MethodParameters:
                  Name  Flags
      commandAncestors  

  protected void loadDexFile(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=7, args_size=2
        start local 0 // org.jf.baksmali.DexInputCommand this
        start local 1 // java.lang.String input
         0: .line 112
            new java.io.File
            dup
            aload 1 /* input */
            invokespecial java.io.File.<init>:(Ljava/lang/String;)V
            astore 2 /* file */
        start local 2 // java.io.File file
         1: .line 114
            goto 3
         2: .line 115
      StackMap locals: java.io.File
      StackMap stack:
            aload 2 /* file */
            invokevirtual java.io.File.getParentFile:()Ljava/io/File;
            astore 2 /* file */
         3: .line 114
      StackMap locals:
      StackMap stack:
            aload 2 /* file */
            ifnull 4
            aload 2 /* file */
            invokevirtual java.io.File.exists:()Z
            ifeq 2
         4: .line 118
      StackMap locals:
      StackMap stack:
            aload 2 /* file */
            ifnull 5
            aload 2 /* file */
            invokevirtual java.io.File.exists:()Z
            ifeq 5
            aload 2 /* file */
            invokevirtual java.io.File.isDirectory:()Z
            ifeq 7
         5: .line 119
      StackMap locals:
      StackMap stack:
            getstatic java.lang.System.err:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Can't find file: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* input */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         6: .line 120
            iconst_1
            invokestatic java.lang.System.exit:(I)V
         7: .line 123
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* file */
            putfield org.jf.baksmali.DexInputCommand.inputFile:Ljava/io/File;
         8: .line 125
            aconst_null
            astore 3 /* dexEntryName */
        start local 3 // java.lang.String dexEntryName
         9: .line 126
            aload 2 /* file */
            invokevirtual java.io.File.getPath:()Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            aload 1 /* input */
            invokevirtual java.lang.String.length:()I
            if_icmpge 11
        10: .line 127
            aload 1 /* input */
            aload 2 /* file */
            invokevirtual java.io.File.getPath:()Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            iconst_1
            iadd
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            astore 3 /* dexEntryName */
        11: .line 130
      StackMap locals: java.lang.String
      StackMap stack:
            aconst_null
            astore 4 /* opcodes */
        start local 4 // org.jf.dexlib2.Opcodes opcodes
        12: .line 131
            aload 0 /* this */
            getfield org.jf.baksmali.DexInputCommand.apiLevel:I
            iconst_m1
            if_icmpeq 14
        13: .line 132
            aload 0 /* this */
            getfield org.jf.baksmali.DexInputCommand.apiLevel:I
            invokestatic org.jf.dexlib2.Opcodes.forApi:(I)Lorg/jf/dexlib2/Opcodes;
            astore 4 /* opcodes */
        14: .line 135
      StackMap locals: org.jf.dexlib2.Opcodes
      StackMap stack:
            aload 3 /* dexEntryName */
            invokestatic com.google.common.base.Strings.isNullOrEmpty:(Ljava/lang/String;)Z
            ifne 25
        15: .line 136
            iconst_0
            istore 5 /* exactMatch */
        start local 5 // boolean exactMatch
        16: .line 137
            aload 3 /* dexEntryName */
            invokevirtual java.lang.String.length:()I
            iconst_2
            if_icmple 19
            aload 3 /* dexEntryName */
            iconst_0
            invokevirtual java.lang.String.charAt:(I)C
            bipush 34
            if_icmpne 19
            aload 3 /* dexEntryName */
            aload 3 /* dexEntryName */
            invokevirtual java.lang.String.length:()I
            iconst_1
            isub
            invokevirtual java.lang.String.charAt:(I)C
            bipush 34
            if_icmpne 19
        17: .line 138
            aload 3 /* dexEntryName */
            iconst_1
            aload 3 /* dexEntryName */
            invokevirtual java.lang.String.length:()I
            iconst_1
            isub
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            astore 3 /* dexEntryName */
        18: .line 139
            iconst_1
            istore 5 /* exactMatch */
        19: .line 142
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 3 /* dexEntryName */
            putfield org.jf.baksmali.DexInputCommand.inputEntry:Ljava/lang/String;
        20: .line 145
            aload 0 /* this */
            aload 2 /* file */
            aload 3 /* dexEntryName */
            iload 5 /* exactMatch */
            aload 4 /* opcodes */
            invokestatic org.jf.dexlib2.DexFileFactory.loadDexEntry:(Ljava/io/File;Ljava/lang/String;ZLorg/jf/dexlib2/Opcodes;)Lorg/jf/dexlib2/iface/MultiDexContainer$DexEntry;
            putfield org.jf.baksmali.DexInputCommand.dexEntry:Lorg/jf/dexlib2/iface/MultiDexContainer$DexEntry;
        21: .line 146
            aload 0 /* this */
            aload 0 /* this */
            getfield org.jf.baksmali.DexInputCommand.dexEntry:Lorg/jf/dexlib2/iface/MultiDexContainer$DexEntry;
            invokeinterface org.jf.dexlib2.iface.MultiDexContainer$DexEntry.getDexFile:()Lorg/jf/dexlib2/iface/DexFile;
            checkcast org.jf.dexlib2.dexbacked.DexBackedDexFile
            putfield org.jf.baksmali.DexInputCommand.dexFile:Lorg/jf/dexlib2/dexbacked/DexBackedDexFile;
        22: .line 147
            goto 42
      StackMap locals:
      StackMap stack: java.io.IOException
        23: astore 6 /* ex */
        start local 6 // java.io.IOException ex
        24: .line 148
            new java.lang.RuntimeException
            dup
            aload 6 /* ex */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 6 // java.io.IOException ex
        end local 5 // boolean exactMatch
        25: .line 153
      StackMap locals:
      StackMap stack:
            aload 2 /* file */
            aload 4 /* opcodes */
            invokestatic org.jf.dexlib2.DexFileFactory.loadDexContainer:(Ljava/io/File;Lorg/jf/dexlib2/Opcodes;)Lorg/jf/dexlib2/iface/MultiDexContainer;
        26: .line 152
            astore 5 /* container */
        start local 5 // org.jf.dexlib2.iface.MultiDexContainer container
        27: .line 155
            aload 5 /* container */
            invokeinterface org.jf.dexlib2.iface.MultiDexContainer.getDexEntryNames:()Ljava/util/List;
            invokeinterface java.util.List.size:()I
            iconst_1
            if_icmpne 32
        28: .line 156
            aload 0 /* this */
            aload 5 /* container */
            aload 5 /* container */
            invokeinterface org.jf.dexlib2.iface.MultiDexContainer.getDexEntryNames:()Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast java.lang.String
            invokeinterface org.jf.dexlib2.iface.MultiDexContainer.getEntry:(Ljava/lang/String;)Lorg/jf/dexlib2/iface/MultiDexContainer$DexEntry;
            putfield org.jf.baksmali.DexInputCommand.dexEntry:Lorg/jf/dexlib2/iface/MultiDexContainer$DexEntry;
        29: .line 157
            getstatic org.jf.baksmali.DexInputCommand.$assertionsDisabled:Z
            ifne 30
            aload 0 /* this */
            getfield org.jf.baksmali.DexInputCommand.dexEntry:Lorg/jf/dexlib2/iface/MultiDexContainer$DexEntry;
            ifnonnull 30
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        30: .line 158
      StackMap locals: org.jf.dexlib2.iface.MultiDexContainer
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.jf.baksmali.DexInputCommand.dexEntry:Lorg/jf/dexlib2/iface/MultiDexContainer$DexEntry;
            invokeinterface org.jf.dexlib2.iface.MultiDexContainer$DexEntry.getDexFile:()Lorg/jf/dexlib2/iface/DexFile;
            checkcast org.jf.dexlib2.dexbacked.DexBackedDexFile
            putfield org.jf.baksmali.DexInputCommand.dexFile:Lorg/jf/dexlib2/dexbacked/DexBackedDexFile;
        31: .line 159
            goto 42
      StackMap locals:
      StackMap stack:
        32: aload 5 /* container */
            invokeinterface org.jf.dexlib2.iface.MultiDexContainer.getDexEntryNames:()Ljava/util/List;
            invokeinterface java.util.List.size:()I
            iconst_1
            if_icmple 39
        33: .line 160
            aload 0 /* this */
            aload 5 /* container */
            ldc "classes.dex"
            invokeinterface org.jf.dexlib2.iface.MultiDexContainer.getEntry:(Ljava/lang/String;)Lorg/jf/dexlib2/iface/MultiDexContainer$DexEntry;
            putfield org.jf.baksmali.DexInputCommand.dexEntry:Lorg/jf/dexlib2/iface/MultiDexContainer$DexEntry;
        34: .line 161
            aload 0 /* this */
            getfield org.jf.baksmali.DexInputCommand.dexEntry:Lorg/jf/dexlib2/iface/MultiDexContainer$DexEntry;
            ifnonnull 36
        35: .line 162
            aload 0 /* this */
            aload 5 /* container */
            aload 5 /* container */
            invokeinterface org.jf.dexlib2.iface.MultiDexContainer.getDexEntryNames:()Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast java.lang.String
            invokeinterface org.jf.dexlib2.iface.MultiDexContainer.getEntry:(Ljava/lang/String;)Lorg/jf/dexlib2/iface/MultiDexContainer$DexEntry;
            putfield org.jf.baksmali.DexInputCommand.dexEntry:Lorg/jf/dexlib2/iface/MultiDexContainer$DexEntry;
        36: .line 164
      StackMap locals:
      StackMap stack:
            getstatic org.jf.baksmali.DexInputCommand.$assertionsDisabled:Z
            ifne 37
            aload 0 /* this */
            getfield org.jf.baksmali.DexInputCommand.dexEntry:Lorg/jf/dexlib2/iface/MultiDexContainer$DexEntry;
            ifnonnull 37
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        37: .line 165
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.jf.baksmali.DexInputCommand.dexEntry:Lorg/jf/dexlib2/iface/MultiDexContainer$DexEntry;
            invokeinterface org.jf.dexlib2.iface.MultiDexContainer$DexEntry.getDexFile:()Lorg/jf/dexlib2/iface/DexFile;
            checkcast org.jf.dexlib2.dexbacked.DexBackedDexFile
            putfield org.jf.baksmali.DexInputCommand.dexFile:Lorg/jf/dexlib2/dexbacked/DexBackedDexFile;
        38: .line 166
            goto 42
        39: .line 167
      StackMap locals:
      StackMap stack:
            new java.lang.RuntimeException
            dup
            ldc "\"%s\" has no dex files"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* input */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        end local 5 // org.jf.dexlib2.iface.MultiDexContainer container
        40: .line 169
      StackMap locals: org.jf.baksmali.DexInputCommand java.lang.String java.io.File java.lang.String org.jf.dexlib2.Opcodes
      StackMap stack: java.io.IOException
            astore 5 /* ex */
        start local 5 // java.io.IOException ex
        41: .line 170
            new java.lang.RuntimeException
            dup
            aload 5 /* ex */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.io.IOException ex
        42: .line 173
      StackMap locals:
      StackMap stack:
            return
        end local 4 // org.jf.dexlib2.Opcodes opcodes
        end local 3 // java.lang.String dexEntryName
        end local 2 // java.io.File file
        end local 1 // java.lang.String input
        end local 0 // org.jf.baksmali.DexInputCommand this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   43     0          this  Lorg/jf/baksmali/DexInputCommand;
            0   43     1         input  Ljava/lang/String;
            1   43     2          file  Ljava/io/File;
            9   43     3  dexEntryName  Ljava/lang/String;
           12   43     4       opcodes  Lorg/jf/dexlib2/Opcodes;
           16   25     5    exactMatch  Z
           24   25     6            ex  Ljava/io/IOException;
           27   40     5     container  Lorg/jf/dexlib2/iface/MultiDexContainer<+Lorg/jf/dexlib2/dexbacked/DexBackedDexFile;>;
           41   42     5            ex  Ljava/io/IOException;
      Exception table:
        from    to  target  type
          20    22      23  Class java.io.IOException
          25    40      40  Class java.io.IOException
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        javax.annotation.Nonnull()
    RuntimeVisibleParameterAnnotations: 
      0:
        javax.annotation.Nonnull()
    MethodParameters:
       Name  Flags
      input  
}
SourceFile: "DexInputCommand.java"
InnerClasses:
  public abstract DexEntry = org.jf.dexlib2.iface.MultiDexContainer$DexEntry of org.jf.dexlib2.iface.MultiDexContainer