class io.vertx.ext.shell.command.Command$1 implements io.vertx.ext.shell.command.Command
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.vertx.ext.shell.command.Command$1
  super_class: java.lang.Object
{
  private final boolean val$overridesName;
    descriptor: Z
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  private final java.lang.Class val$clazz;
    descriptor: Ljava/lang/Class;
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  private final io.vertx.core.cli.CLI val$cli;
    descriptor: Lio/vertx/core/cli/CLI;
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  private final boolean val$overridesCli;
    descriptor: Z
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  private final io.vertx.core.Vertx val$vertx;
    descriptor: Lio/vertx/core/Vertx;
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  private final io.vertx.core.Context val$context;
    descriptor: Lio/vertx/core/Context;
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  void <init>(boolean, java.lang.Class, io.vertx.core.cli.CLI, boolean, io.vertx.core.Vertx, io.vertx.core.Context);
    descriptor: (ZLjava/lang/Class;Lio/vertx/core/cli/CLI;ZLio/vertx/core/Vertx;Lio/vertx/core/Context;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=7, args_size=7
        start local 0 // io.vertx.ext.shell.command.Command$1 this
         0: .line 89
            aload 0 /* this */
            iload 1
            putfield io.vertx.ext.shell.command.Command$1.val$overridesName:Z
            aload 0 /* this */
            aload 2
            putfield io.vertx.ext.shell.command.Command$1.val$clazz:Ljava/lang/Class;
            aload 0 /* this */
            aload 3
            putfield io.vertx.ext.shell.command.Command$1.val$cli:Lio/vertx/core/cli/CLI;
            aload 0 /* this */
            iload 4
            putfield io.vertx.ext.shell.command.Command$1.val$overridesCli:Z
            aload 0 /* this */
            aload 5
            putfield io.vertx.ext.shell.command.Command$1.val$vertx:Lio/vertx/core/Vertx;
            aload 0 /* this */
            aload 6
            putfield io.vertx.ext.shell.command.Command$1.val$context:Lio/vertx/core/Context;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // io.vertx.ext.shell.command.Command$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/command/Command$1;
    MethodParameters:
                   Name  Flags
      val$overridesName  final
      val$clazz          final
      val$cli            final
      val$overridesCli   final
      val$vertx          final
      val$context        final

  public java.lang.String name();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.command.Command$1 this
         0: .line 93
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.Command$1.val$overridesName:Z
            ifeq 4
         1: .line 95
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.Command$1.val$clazz:Ljava/lang/Class;
            invokevirtual java.lang.Class.newInstance:()Ljava/lang/Object;
            checkcast io.vertx.ext.shell.command.AnnotatedCommand
            invokevirtual io.vertx.ext.shell.command.AnnotatedCommand.name:()Ljava/lang/String;
         2: areturn
         3: .line 96
      StackMap locals:
      StackMap stack: java.lang.Exception
            pop
         4: .line 100
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.Command$1.val$cli:Lio/vertx/core/cli/CLI;
            invokeinterface io.vertx.core.cli.CLI.getName:()Ljava/lang/String;
            areturn
        end local 0 // io.vertx.ext.shell.command.Command$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/ext/shell/command/Command$1;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.Exception

  public io.vertx.core.cli.CLI cli();
    descriptor: ()Lio/vertx/core/cli/CLI;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.command.Command$1 this
         0: .line 105
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.Command$1.val$overridesCli:Z
            ifeq 4
         1: .line 107
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.Command$1.val$clazz:Ljava/lang/Class;
            invokevirtual java.lang.Class.newInstance:()Ljava/lang/Object;
            checkcast io.vertx.ext.shell.command.AnnotatedCommand
            invokevirtual io.vertx.ext.shell.command.AnnotatedCommand.cli:()Lio/vertx/core/cli/CLI;
         2: areturn
         3: .line 108
      StackMap locals:
      StackMap stack: java.lang.Exception
            pop
         4: .line 112
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.Command$1.val$cli:Lio/vertx/core/cli/CLI;
            areturn
        end local 0 // io.vertx.ext.shell.command.Command$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/ext/shell/command/Command$1;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.Exception

  private void process(io.vertx.ext.shell.command.CommandProcess);
    descriptor: (Lio/vertx/ext/shell/command/CommandProcess;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.ext.shell.command.Command$1 this
        start local 1 // io.vertx.ext.shell.command.CommandProcess process
         0: .line 118
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.Command$1.val$clazz:Ljava/lang/Class;
            invokevirtual java.lang.Class.newInstance:()Ljava/lang/Object;
            checkcast io.vertx.ext.shell.command.AnnotatedCommand
            astore 2 /* instance */
        start local 2 // io.vertx.ext.shell.command.AnnotatedCommand instance
         1: .line 119
            goto 5
        end local 2 // io.vertx.ext.shell.command.AnnotatedCommand instance
      StackMap locals:
      StackMap stack: java.lang.Exception
         2: pop
         3: .line 120
            aload 1 /* process */
            invokeinterface io.vertx.ext.shell.command.CommandProcess.end:()V
         4: .line 121
            return
        start local 2 // io.vertx.ext.shell.command.AnnotatedCommand instance
         5: .line 123
      StackMap locals: io.vertx.ext.shell.command.AnnotatedCommand
      StackMap stack:
            aload 1 /* process */
            invokeinterface io.vertx.ext.shell.command.CommandProcess.commandLine:()Lio/vertx/core/cli/CommandLine;
            aload 2 /* instance */
            invokestatic io.vertx.core.cli.annotations.CLIConfigurator.inject:(Lio/vertx/core/cli/CommandLine;Ljava/lang/Object;)V
         6: .line 124
            aload 2 /* instance */
            aload 1 /* process */
            invokevirtual io.vertx.ext.shell.command.AnnotatedCommand.process:(Lio/vertx/ext/shell/command/CommandProcess;)V
         7: .line 125
            return
        end local 2 // io.vertx.ext.shell.command.AnnotatedCommand instance
        end local 1 // io.vertx.ext.shell.command.CommandProcess process
        end local 0 // io.vertx.ext.shell.command.Command$1 this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lio/vertx/ext/shell/command/Command$1;
            0    8     1   process  Lio/vertx/ext/shell/command/CommandProcess;
            1    2     2  instance  Lio/vertx/ext/shell/command/AnnotatedCommand;
            5    8     2  instance  Lio/vertx/ext/shell/command/AnnotatedCommand;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Exception
    MethodParameters:
         Name  Flags
      process  

  public io.vertx.ext.shell.system.Process createProcess(java.util.List<io.vertx.ext.shell.cli.CliToken>);
    descriptor: (Ljava/util/List;)Lio/vertx/ext/shell/system/Process;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.command.Command$1 this
        start local 1 // java.util.List args
         0: .line 129
            new io.vertx.ext.shell.command.impl.ProcessImpl
            dup
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.Command$1.val$vertx:Lio/vertx/core/Vertx;
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.Command$1.val$context:Lio/vertx/core/Context;
            aload 0 /* this */
            aload 1 /* args */
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/ext/shell/command/Command$1;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/ext/shell/command/Command$1.process(Lio/vertx/ext/shell/command/CommandProcess;)V (7)
                  (Lio/vertx/ext/shell/command/CommandProcess;)V
            invokespecial io.vertx.ext.shell.command.impl.ProcessImpl.<init>:(Lio/vertx/core/Vertx;Lio/vertx/core/Context;Lio/vertx/ext/shell/command/Command;Ljava/util/List;Lio/vertx/core/Handler;)V
            areturn
        end local 1 // java.util.List args
        end local 0 // io.vertx.ext.shell.command.Command$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/command/Command$1;
            0    1     1  args  Ljava/util/List<Lio/vertx/ext/shell/cli/CliToken;>;
    Signature: (Ljava/util/List<Lio/vertx/ext/shell/cli/CliToken;>;)Lio/vertx/ext/shell/system/Process;
    MethodParameters:
      Name  Flags
      args  

  public void complete(io.vertx.ext.shell.cli.Completion);
    descriptor: (Lio/vertx/ext/shell/cli/Completion;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.ext.shell.command.Command$1 this
        start local 1 // io.vertx.ext.shell.cli.Completion completion
         0: .line 136
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.Command$1.val$clazz:Ljava/lang/Class;
            invokevirtual java.lang.Class.newInstance:()Ljava/lang/Object;
            checkcast io.vertx.ext.shell.command.AnnotatedCommand
            astore 2 /* instance */
        start local 2 // io.vertx.ext.shell.command.AnnotatedCommand instance
         1: .line 137
            goto 5
        end local 2 // io.vertx.ext.shell.command.AnnotatedCommand instance
      StackMap locals:
      StackMap stack: java.lang.Exception
         2: pop
         3: .line 138
            aload 0 /* this */
            aload 1 /* completion */
            invokespecial io.vertx.ext.shell.command.Command.complete:(Lio/vertx/ext/shell/cli/Completion;)V
         4: .line 139
            return
        start local 2 // io.vertx.ext.shell.command.AnnotatedCommand instance
         5: .line 141
      StackMap locals: io.vertx.ext.shell.command.AnnotatedCommand
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.Command$1.val$context:Lio/vertx/core/Context;
            aload 2 /* instance */
            aload 1 /* completion */
            invokedynamic handle(Lio/vertx/ext/shell/command/AnnotatedCommand;Lio/vertx/ext/shell/cli/Completion;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/ext/shell/command/Command$1.lambda$1(Lio/vertx/ext/shell/command/AnnotatedCommand;Lio/vertx/ext/shell/cli/Completion;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Context.runOnContext:(Lio/vertx/core/Handler;)V
         6: .line 149
            return
        end local 2 // io.vertx.ext.shell.command.AnnotatedCommand instance
        end local 1 // io.vertx.ext.shell.cli.Completion completion
        end local 0 // io.vertx.ext.shell.command.Command$1 this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lio/vertx/ext/shell/command/Command$1;
            0    7     1  completion  Lio/vertx/ext/shell/cli/Completion;
            1    2     2    instance  Lio/vertx/ext/shell/command/AnnotatedCommand;
            5    7     2    instance  Lio/vertx/ext/shell/command/AnnotatedCommand;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Exception
    MethodParameters:
            Name  Flags
      completion  

  private static void lambda$1(io.vertx.ext.shell.command.AnnotatedCommand, io.vertx.ext.shell.cli.Completion, java.lang.Void);
    descriptor: (Lio/vertx/ext/shell/command/AnnotatedCommand;Lio/vertx/ext/shell/cli/Completion;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=4, args_size=3
        start local 2 // java.lang.Void v
         0: .line 143
            aload 0
            aload 1
            invokevirtual io.vertx.ext.shell.command.AnnotatedCommand.complete:(Lio/vertx/ext/shell/cli/Completion;)V
         1: .line 144
            goto 5
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 3 /* t */
        start local 3 // java.lang.Throwable t
         3: .line 145
            aload 1
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            invokeinterface io.vertx.ext.shell.cli.Completion.complete:(Ljava/util/List;)V
         4: .line 146
            aload 3 /* t */
            athrow
        end local 3 // java.lang.Throwable t
         5: .line 148
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     2     v  Ljava/lang/Void;
            3    5     3     t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Throwable
}
SourceFile: "Command.java"
EnclosingMethod: io.vertx.ext.shell.command.Command.create:(Lio/vertx/core/Vertx;Ljava/lang/Class;)Lio/vertx/ext/shell/command/Command;
NestHost: io.vertx.ext.shell.command.Command
InnerClasses:
  io.vertx.ext.shell.command.Command$1
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles