public class io.vertx.ext.shell.command.base.LocalMapPut extends io.vertx.ext.shell.command.AnnotatedCommand
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.shell.command.base.LocalMapPut
  super_class: io.vertx.ext.shell.command.AnnotatedCommand
{
  private java.lang.String map;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String key;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String value;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.command.base.LocalMapPut this
         0: .line 50
            aload 0 /* this */
            invokespecial io.vertx.ext.shell.command.AnnotatedCommand.<init>:()V
            return
        end local 0 // io.vertx.ext.shell.command.base.LocalMapPut this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/command/base/LocalMapPut;

  public void setMap(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.command.base.LocalMapPut this
        start local 1 // java.lang.String map
         0: .line 59
            aload 0 /* this */
            aload 1 /* map */
            putfield io.vertx.ext.shell.command.base.LocalMapPut.map:Ljava/lang/String;
         1: .line 60
            return
        end local 1 // java.lang.String map
        end local 0 // io.vertx.ext.shell.command.base.LocalMapPut this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/shell/command/base/LocalMapPut;
            0    2     1   map  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      io.vertx.core.cli.annotations.Argument(index = 0, argName = "map", required = false)
      io.vertx.core.cli.annotations.Description(value = "the local shared map name")
    MethodParameters:
      Name  Flags
      map   

  public void setKey(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.command.base.LocalMapPut this
        start local 1 // java.lang.String key
         0: .line 65
            aload 0 /* this */
            aload 1 /* key */
            putfield io.vertx.ext.shell.command.base.LocalMapPut.key:Ljava/lang/String;
         1: .line 66
            return
        end local 1 // java.lang.String key
        end local 0 // io.vertx.ext.shell.command.base.LocalMapPut this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/shell/command/base/LocalMapPut;
            0    2     1   key  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      io.vertx.core.cli.annotations.Argument(index = 1, argName = "key", required = false)
      io.vertx.core.cli.annotations.Description(value = "the key to put")
    MethodParameters:
      Name  Flags
      key   

  public void setValue(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.command.base.LocalMapPut this
        start local 1 // java.lang.String value
         0: .line 71
            aload 0 /* this */
            aload 1 /* value */
            putfield io.vertx.ext.shell.command.base.LocalMapPut.value:Ljava/lang/String;
         1: .line 72
            return
        end local 1 // java.lang.String value
        end local 0 // io.vertx.ext.shell.command.base.LocalMapPut this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/ext/shell/command/base/LocalMapPut;
            0    2     1  value  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      io.vertx.core.cli.annotations.Argument(index = 2, argName = "value", required = false)
      io.vertx.core.cli.annotations.Description(value = "the value to put")
    MethodParameters:
       Name  Flags
      value  

  public void process(io.vertx.ext.shell.command.CommandProcess);
    descriptor: (Lio/vertx/ext/shell/command/CommandProcess;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // io.vertx.ext.shell.command.base.LocalMapPut this
        start local 1 // io.vertx.ext.shell.command.CommandProcess process
         0: .line 76
            aload 1 /* process */
            invokeinterface io.vertx.ext.shell.command.CommandProcess.vertx:()Lio/vertx/core/Vertx;
            astore 2 /* vertx */
        start local 2 // io.vertx.core.Vertx vertx
         1: .line 77
            aload 2 /* vertx */
            invokeinterface io.vertx.core.Vertx.sharedData:()Lio/vertx/core/shareddata/SharedData;
            astore 3 /* sharedData */
        start local 3 // io.vertx.core.shareddata.SharedData sharedData
         2: .line 78
            aload 3 /* sharedData */
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.base.LocalMapPut.map:Ljava/lang/String;
            invokeinterface io.vertx.core.shareddata.SharedData.getLocalMap:(Ljava/lang/String;)Lio/vertx/core/shareddata/LocalMap;
            astore 4 /* localMap */
        start local 4 // io.vertx.core.shareddata.LocalMap localMap
         3: .line 79
            aload 4 /* localMap */
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.base.LocalMapPut.key:Ljava/lang/String;
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.base.LocalMapPut.value:Ljava/lang/String;
            invokeinterface io.vertx.core.shareddata.LocalMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 80
            aload 1 /* process */
            invokeinterface io.vertx.ext.shell.command.CommandProcess.end:()V
         5: .line 81
            return
        end local 4 // io.vertx.core.shareddata.LocalMap localMap
        end local 3 // io.vertx.core.shareddata.SharedData sharedData
        end local 2 // io.vertx.core.Vertx vertx
        end local 1 // io.vertx.ext.shell.command.CommandProcess process
        end local 0 // io.vertx.ext.shell.command.base.LocalMapPut this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lio/vertx/ext/shell/command/base/LocalMapPut;
            0    6     1     process  Lio/vertx/ext/shell/command/CommandProcess;
            1    6     2       vertx  Lio/vertx/core/Vertx;
            2    6     3  sharedData  Lio/vertx/core/shareddata/SharedData;
            3    6     4    localMap  Lio/vertx/core/shareddata/LocalMap<Ljava/lang/Object;Ljava/lang/Object;>;
    MethodParameters:
         Name  Flags
      process  
}
SourceFile: "LocalMapPut.java"
    RuntimeVisibleAnnotations: 
      io.vertx.core.cli.annotations.Name(value = "local-map-put")
      io.vertx.core.cli.annotations.Summary(value = "Put key/value in a local map")