public abstract class io.vertx.core.spi.launcher.DefaultCommand implements io.vertx.core.spi.launcher.Command
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: io.vertx.core.spi.launcher.DefaultCommand
  super_class: java.lang.Object
{
  private java.io.File cwd;
    descriptor: Ljava/io/File;
    flags: (0x0002) ACC_PRIVATE

  protected java.util.List<java.lang.String> systemProperties;
    descriptor: Ljava/util/List;
    flags: (0x0004) ACC_PROTECTED
    Signature: Ljava/util/List<Ljava/lang/String;>;

  protected io.vertx.core.spi.launcher.ExecutionContext executionContext;
    descriptor: Lio/vertx/core/spi/launcher/ExecutionContext;
    flags: (0x0004) ACC_PROTECTED

  protected java.io.PrintStream out;
    descriptor: Ljava/io/PrintStream;
    flags: (0x0004) ACC_PROTECTED

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.spi.launcher.DefaultCommand this
         0: .line 31
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // io.vertx.core.spi.launcher.DefaultCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/spi/launcher/DefaultCommand;

  public java.io.File getCwd();
    descriptor: ()Ljava/io/File;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.spi.launcher.DefaultCommand this
         0: .line 51
            aload 0 /* this */
            getfield io.vertx.core.spi.launcher.DefaultCommand.cwd:Ljava/io/File;
            ifnull 1
            aload 0 /* this */
            getfield io.vertx.core.spi.launcher.DefaultCommand.cwd:Ljava/io/File;
            goto 2
      StackMap locals:
      StackMap stack:
         1: new java.io.File
            dup
            ldc "."
            invokespecial java.io.File.<init>:(Ljava/lang/String;)V
      StackMap locals:
      StackMap stack: java.io.File
         2: areturn
        end local 0 // io.vertx.core.spi.launcher.DefaultCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/spi/launcher/DefaultCommand;

  public void setCwd(java.io.File);
    descriptor: (Ljava/io/File;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.spi.launcher.DefaultCommand this
        start local 1 // java.io.File cwd
         0: .line 65
            aload 0 /* this */
            aload 1 /* cwd */
            putfield io.vertx.core.spi.launcher.DefaultCommand.cwd:Ljava/io/File;
         1: .line 66
            return
        end local 1 // java.io.File cwd
        end local 0 // io.vertx.core.spi.launcher.DefaultCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/spi/launcher/DefaultCommand;
            0    2     1   cwd  Ljava/io/File;
    RuntimeVisibleAnnotations: 
      io.vertx.core.cli.annotations.Option(longName = "cwd", argName = "dir")
      io.vertx.core.cli.annotations.Description(value = "Specifies the current working directory for this command, default set to the Java current directory")
      io.vertx.core.cli.annotations.Hidden()
    MethodParameters:
      Name  Flags
      cwd   

  public void setSystemProps(java.util.List<java.lang.String>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.spi.launcher.DefaultCommand this
        start local 1 // java.util.List props
         0: .line 79
            aload 0 /* this */
            aload 1 /* props */
            putfield io.vertx.core.spi.launcher.DefaultCommand.systemProperties:Ljava/util/List;
         1: .line 80
            return
        end local 1 // java.util.List props
        end local 0 // io.vertx.core.spi.launcher.DefaultCommand this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/core/spi/launcher/DefaultCommand;
            0    2     1  props  Ljava/util/List<Ljava/lang/String;>;
    Signature: (Ljava/util/List<Ljava/lang/String;>;)V
    RuntimeVisibleAnnotations: 
      io.vertx.core.cli.annotations.Option(longName = "systemProperty", shortName = "D", argName = "key>=<value")
      io.vertx.core.cli.annotations.Description(value = "Set a system property")
      io.vertx.core.cli.annotations.Hidden()
    MethodParameters:
       Name  Flags
      props  

  public void setUp(io.vertx.core.spi.launcher.ExecutionContext);
    descriptor: (Lio/vertx/core/spi/launcher/ExecutionContext;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.core.spi.launcher.DefaultCommand this
        start local 1 // io.vertx.core.spi.launcher.ExecutionContext ec
         0: .line 84
            aload 0 /* this */
            aload 1 /* ec */
            putfield io.vertx.core.spi.launcher.DefaultCommand.executionContext:Lio/vertx/core/spi/launcher/ExecutionContext;
         1: .line 85
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.core.spi.launcher.DefaultCommand.executionContext:Lio/vertx/core/spi/launcher/ExecutionContext;
            invokevirtual io.vertx.core.spi.launcher.ExecutionContext.getPrintStream:()Ljava/io/PrintStream;
            putfield io.vertx.core.spi.launcher.DefaultCommand.out:Ljava/io/PrintStream;
         2: .line 86
            aload 0 /* this */
            invokevirtual io.vertx.core.spi.launcher.DefaultCommand.applySystemProperties:()V
         3: .line 87
            return
        end local 1 // io.vertx.core.spi.launcher.ExecutionContext ec
        end local 0 // io.vertx.core.spi.launcher.DefaultCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/core/spi/launcher/DefaultCommand;
            0    4     1    ec  Lio/vertx/core/spi/launcher/ExecutionContext;
    Exceptions:
      throws io.vertx.core.cli.CLIException
    MethodParameters:
      Name  Flags
      ec    

  public java.io.PrintStream out();
    descriptor: ()Ljava/io/PrintStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.spi.launcher.DefaultCommand this
         0: .line 93
            aload 0 /* this */
            getfield io.vertx.core.spi.launcher.DefaultCommand.executionContext:Lio/vertx/core/spi/launcher/ExecutionContext;
            invokevirtual io.vertx.core.spi.launcher.ExecutionContext.getPrintStream:()Ljava/io/PrintStream;
            areturn
        end local 0 // io.vertx.core.spi.launcher.DefaultCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/spi/launcher/DefaultCommand;

  public void tearDown();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.core.spi.launcher.DefaultCommand this
         0: .line 99
            return
        end local 0 // io.vertx.core.spi.launcher.DefaultCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/spi/launcher/DefaultCommand;
    Exceptions:
      throws io.vertx.core.cli.CLIException

  protected void applySystemProperties();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // io.vertx.core.spi.launcher.DefaultCommand this
         0: .line 105
            aload 0 /* this */
            getfield io.vertx.core.spi.launcher.DefaultCommand.systemProperties:Ljava/util/List;
            ifnull 9
         1: .line 106
            aload 0 /* this */
            getfield io.vertx.core.spi.launcher.DefaultCommand.systemProperties:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 2
            goto 8
      StackMap locals: io.vertx.core.spi.launcher.DefaultCommand top java.util.Iterator
      StackMap stack:
         2: aload 2
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 1 /* prop */
        start local 1 // java.lang.String prop
         3: .line 107
            aload 1 /* prop */
            bipush 61
            invokevirtual java.lang.String.indexOf:(I)I
            istore 3 /* p */
        start local 3 // int p
         4: .line 108
            iload 3 /* p */
            ifle 8
         5: .line 109
            aload 1 /* prop */
            iconst_0
            iload 3 /* p */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            astore 4 /* key */
        start local 4 // java.lang.String key
         6: .line 110
            aload 1 /* prop */
            iload 3 /* p */
            iconst_1
            iadd
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            astore 5 /* val */
        start local 5 // java.lang.String val
         7: .line 111
            aload 4 /* key */
            aload 5 /* val */
            invokestatic java.lang.System.setProperty:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            pop
        end local 5 // java.lang.String val
        end local 4 // java.lang.String key
        end local 3 // int p
        end local 1 // java.lang.String prop
         8: .line 106
      StackMap locals:
      StackMap stack:
            aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         9: .line 115
      StackMap locals: io.vertx.core.spi.launcher.DefaultCommand
      StackMap stack:
            return
        end local 0 // io.vertx.core.spi.launcher.DefaultCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lio/vertx/core/spi/launcher/DefaultCommand;
            3    8     1  prop  Ljava/lang/String;
            4    8     3     p  I
            6    8     4   key  Ljava/lang/String;
            7    8     5   val  Ljava/lang/String;
}
SourceFile: "DefaultCommand.java"