public class io.vertx.ext.unit.TestOptions extends io.vertx.ext.unit.report.ReportingOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.unit.TestOptions
  super_class: io.vertx.ext.unit.report.ReportingOptions
{
  public static final long DEFAULT_TIMEOUT;
    descriptor: J
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 120000

  public static final java.lang.Boolean DEFAULT_USE_EVENT_LOOP;
    descriptor: Ljava/lang/Boolean;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  private long timeout;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Boolean useEventLoop;
    descriptor: Ljava/lang/Boolean;
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 40
            aconst_null
            putstatic io.vertx.ext.unit.TestOptions.DEFAULT_USE_EVENT_LOOP:Ljava/lang/Boolean;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.ext.unit.TestOptions this
         0: .line 48
            aload 0 /* this */
            invokespecial io.vertx.ext.unit.report.ReportingOptions.<init>:()V
         1: .line 42
            aload 0 /* this */
            ldc 120000
            putfield io.vertx.ext.unit.TestOptions.timeout:J
         2: .line 43
            aload 0 /* this */
            getstatic io.vertx.ext.unit.TestOptions.DEFAULT_USE_EVENT_LOOP:Ljava/lang/Boolean;
            putfield io.vertx.ext.unit.TestOptions.useEventLoop:Ljava/lang/Boolean;
         3: .line 49
            return
        end local 0 // io.vertx.ext.unit.TestOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/ext/unit/TestOptions;

  public void <init>(io.vertx.ext.unit.TestOptions);
    descriptor: (Lio/vertx/ext/unit/TestOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.unit.TestOptions this
        start local 1 // io.vertx.ext.unit.TestOptions other
         0: .line 57
            aload 0 /* this */
            aload 1 /* other */
            invokespecial io.vertx.ext.unit.report.ReportingOptions.<init>:(Lio/vertx/ext/unit/report/ReportingOptions;)V
         1: .line 42
            aload 0 /* this */
            ldc 120000
            putfield io.vertx.ext.unit.TestOptions.timeout:J
         2: .line 43
            aload 0 /* this */
            getstatic io.vertx.ext.unit.TestOptions.DEFAULT_USE_EVENT_LOOP:Ljava/lang/Boolean;
            putfield io.vertx.ext.unit.TestOptions.useEventLoop:Ljava/lang/Boolean;
         3: .line 58
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.unit.TestOptions.timeout:J
            invokevirtual io.vertx.ext.unit.TestOptions.setTimeout:(J)Lio/vertx/ext/unit/TestOptions;
            pop
         4: .line 59
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.unit.TestOptions.useEventLoop:Ljava/lang/Boolean;
            invokevirtual io.vertx.ext.unit.TestOptions.setUseEventLoop:(Ljava/lang/Boolean;)Lio/vertx/ext/unit/TestOptions;
            pop
         5: .line 60
            return
        end local 1 // io.vertx.ext.unit.TestOptions other
        end local 0 // io.vertx.ext.unit.TestOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lio/vertx/ext/unit/TestOptions;
            0    6     1  other  Lio/vertx/ext/unit/TestOptions;
    MethodParameters:
       Name  Flags
      other  

  public void <init>(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.unit.TestOptions this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 68
            aload 0 /* this */
            aload 1 /* json */
            invokespecial io.vertx.ext.unit.report.ReportingOptions.<init>:(Lio/vertx/core/json/JsonObject;)V
         1: .line 42
            aload 0 /* this */
            ldc 120000
            putfield io.vertx.ext.unit.TestOptions.timeout:J
         2: .line 43
            aload 0 /* this */
            getstatic io.vertx.ext.unit.TestOptions.DEFAULT_USE_EVENT_LOOP:Ljava/lang/Boolean;
            putfield io.vertx.ext.unit.TestOptions.useEventLoop:Ljava/lang/Boolean;
         3: .line 69
            aload 1 /* json */
            aload 0 /* this */
            invokestatic io.vertx.ext.unit.TestOptionsConverter.fromJson:(Ljava/lang/Iterable;Lio/vertx/ext/unit/TestOptions;)V
         4: .line 70
            return
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.ext.unit.TestOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/ext/unit/TestOptions;
            0    5     1  json  Lio/vertx/core/json/JsonObject;
    MethodParameters:
      Name  Flags
      json  

  public long getTimeout();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.unit.TestOptions this
         0: .line 76
            aload 0 /* this */
            getfield io.vertx.ext.unit.TestOptions.timeout:J
            lreturn
        end local 0 // io.vertx.ext.unit.TestOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/unit/TestOptions;

  public io.vertx.ext.unit.TestOptions setTimeout(long);
    descriptor: (J)Lio/vertx/ext/unit/TestOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.ext.unit.TestOptions this
        start local 1 // long timeout
         0: .line 87
            aload 0 /* this */
            lload 1 /* timeout */
            putfield io.vertx.ext.unit.TestOptions.timeout:J
         1: .line 88
            aload 0 /* this */
            areturn
        end local 1 // long timeout
        end local 0 // io.vertx.ext.unit.TestOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/unit/TestOptions;
            0    2     1  timeout  J
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
         Name  Flags
      timeout  

  public java.lang.Boolean isUseEventLoop();
    descriptor: ()Ljava/lang/Boolean;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.unit.TestOptions this
         0: .line 95
            aload 0 /* this */
            getfield io.vertx.ext.unit.TestOptions.useEventLoop:Ljava/lang/Boolean;
            areturn
        end local 0 // io.vertx.ext.unit.TestOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/unit/TestOptions;

  public io.vertx.ext.unit.TestOptions setUseEventLoop(java.lang.Boolean);
    descriptor: (Ljava/lang/Boolean;)Lio/vertx/ext/unit/TestOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.unit.TestOptions this
        start local 1 // java.lang.Boolean useEventLoop
         0: .line 106
            aload 0 /* this */
            aload 1 /* useEventLoop */
            putfield io.vertx.ext.unit.TestOptions.useEventLoop:Ljava/lang/Boolean;
         1: .line 107
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Boolean useEventLoop
        end local 0 // io.vertx.ext.unit.TestOptions this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lio/vertx/ext/unit/TestOptions;
            0    2     1  useEventLoop  Ljava/lang/Boolean;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
              Name  Flags
      useEventLoop  

  public io.vertx.ext.unit.TestOptions addReporter(io.vertx.ext.unit.report.ReportOptions);
    descriptor: (Lio/vertx/ext/unit/report/ReportOptions;)Lio/vertx/ext/unit/TestOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.unit.TestOptions this
        start local 1 // io.vertx.ext.unit.report.ReportOptions reportOptions
         0: .line 112
            aload 0 /* this */
            aload 1 /* reportOptions */
            invokespecial io.vertx.ext.unit.report.ReportingOptions.addReporter:(Lio/vertx/ext/unit/report/ReportOptions;)Lio/vertx/ext/unit/report/ReportingOptions;
            checkcast io.vertx.ext.unit.TestOptions
            areturn
        end local 1 // io.vertx.ext.unit.report.ReportOptions reportOptions
        end local 0 // io.vertx.ext.unit.TestOptions this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lio/vertx/ext/unit/TestOptions;
            0    1     1  reportOptions  Lio/vertx/ext/unit/report/ReportOptions;
    MethodParameters:
               Name  Flags
      reportOptions  

  public io.vertx.ext.unit.TestOptions setReporters(java.util.List<io.vertx.ext.unit.report.ReportOptions>);
    descriptor: (Ljava/util/List;)Lio/vertx/ext/unit/TestOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.unit.TestOptions this
        start local 1 // java.util.List reporters
         0: .line 117
            aload 0 /* this */
            aload 1 /* reporters */
            invokespecial io.vertx.ext.unit.report.ReportingOptions.setReporters:(Ljava/util/List;)Lio/vertx/ext/unit/report/ReportingOptions;
            checkcast io.vertx.ext.unit.TestOptions
            areturn
        end local 1 // java.util.List reporters
        end local 0 // io.vertx.ext.unit.TestOptions this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/vertx/ext/unit/TestOptions;
            0    1     1  reporters  Ljava/util/List<Lio/vertx/ext/unit/report/ReportOptions;>;
    Signature: (Ljava/util/List<Lio/vertx/ext/unit/report/ReportOptions;>;)Lio/vertx/ext/unit/TestOptions;
    MethodParameters:
           Name  Flags
      reporters  

  public io.vertx.core.json.JsonObject toJson();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.ext.unit.TestOptions this
         0: .line 124
            aload 0 /* this */
            invokespecial io.vertx.ext.unit.report.ReportingOptions.toJson:()Lio/vertx/core/json/JsonObject;
            astore 1 /* json */
        start local 1 // io.vertx.core.json.JsonObject json
         1: .line 125
            aload 0 /* this */
            aload 1 /* json */
            invokestatic io.vertx.ext.unit.TestOptionsConverter.toJson:(Lio/vertx/ext/unit/TestOptions;Lio/vertx/core/json/JsonObject;)V
         2: .line 126
            aload 1 /* json */
            areturn
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.ext.unit.TestOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/unit/TestOptions;
            1    3     1  json  Lio/vertx/core/json/JsonObject;

  public io.vertx.ext.unit.report.ReportingOptions setReporters(java.util.List);
    descriptor: (Ljava/util/List;)Lio/vertx/ext/unit/report/ReportingOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.unit.TestOptions.setReporters:(Ljava/util/List;)Lio/vertx/ext/unit/TestOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.ext.unit.report.ReportingOptions addReporter(io.vertx.ext.unit.report.ReportOptions);
    descriptor: (Lio/vertx/ext/unit/report/ReportOptions;)Lio/vertx/ext/unit/report/ReportingOptions;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.ext.unit.TestOptions.addReporter:(Lio/vertx/ext/unit/report/ReportOptions;)Lio/vertx/ext/unit/TestOptions;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "TestOptions.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.DataObject(generateConverter = true)