public class io.vertx.serviceproxy.generator.model.ProxyModel extends io.vertx.codegen.ClassModel
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.serviceproxy.generator.model.ProxyModel
  super_class: io.vertx.codegen.ClassModel
{
  public void <init>(javax.annotation.processing.ProcessingEnvironment, javax.lang.model.element.TypeElement);
    descriptor: (Ljavax/annotation/processing/ProcessingEnvironment;Ljavax/lang/model/element/TypeElement;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.serviceproxy.generator.model.ProxyModel this
        start local 1 // javax.annotation.processing.ProcessingEnvironment env
        start local 2 // javax.lang.model.element.TypeElement modelElt
         0: .line 44
            aload 0 /* this */
            aload 1 /* env */
            aload 2 /* modelElt */
            invokespecial io.vertx.codegen.ClassModel.<init>:(Ljavax/annotation/processing/ProcessingEnvironment;Ljavax/lang/model/element/TypeElement;)V
         1: .line 45
            return
        end local 2 // javax.lang.model.element.TypeElement modelElt
        end local 1 // javax.annotation.processing.ProcessingEnvironment env
        end local 0 // io.vertx.serviceproxy.generator.model.ProxyModel this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/vertx/serviceproxy/generator/model/ProxyModel;
            0    2     1       env  Ljavax/annotation/processing/ProcessingEnvironment;
            0    2     2  modelElt  Ljavax/lang/model/element/TypeElement;
    MethodParameters:
          Name  Flags
      env       
      modelElt  

  public java.lang.String getKind();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.serviceproxy.generator.model.ProxyModel this
         0: .line 49
            ldc "proxy"
            areturn
        end local 0 // io.vertx.serviceproxy.generator.model.ProxyModel this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/serviceproxy/generator/model/ProxyModel;

  protected void checkParamType(javax.lang.model.element.ExecutableElement, javax.lang.model.type.TypeMirror, io.vertx.codegen.type.TypeInfo, int, int, boolean);
    descriptor: (Ljavax/lang/model/element/ExecutableElement;Ljavax/lang/model/type/TypeMirror;Lio/vertx/codegen/type/TypeInfo;IIZ)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=7, args_size=7
        start local 0 // io.vertx.serviceproxy.generator.model.ProxyModel this
        start local 1 // javax.lang.model.element.ExecutableElement elem
        start local 2 // javax.lang.model.type.TypeMirror type
        start local 3 // io.vertx.codegen.type.TypeInfo typeInfo
        start local 4 // int pos
        start local 5 // int numParams
        start local 6 // boolean allowAnyJavaType
         0: .line 56
            aload 3 /* typeInfo */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getfield io.vertx.codegen.type.ClassKind.basic:Z
            ifne 1
            aload 3 /* typeInfo */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getfield io.vertx.codegen.type.ClassKind.json:Z
            ifeq 2
         1: .line 57
      StackMap locals:
      StackMap stack:
            return
         2: .line 60
      StackMap locals:
      StackMap stack:
            aload 3 /* typeInfo */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getstatic io.vertx.codegen.type.ClassKind.ENUM:Lio/vertx/codegen/type/ClassKind;
            if_acmpne 4
         3: .line 61
            return
         4: .line 63
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* typeInfo */
            invokevirtual io.vertx.serviceproxy.generator.model.ProxyModel.isLegalContainerParam:(Lio/vertx/codegen/type/TypeInfo;)Z
            ifeq 6
         5: .line 64
            return
         6: .line 67
      StackMap locals:
      StackMap stack:
            aload 3 /* typeInfo */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getstatic io.vertx.codegen.type.ClassKind.DATA_OBJECT:Lio/vertx/codegen/type/ClassKind;
            if_acmpne 11
         7: .line 68
            aload 2 /* type */
            instanceof javax.lang.model.type.DeclaredType
            ifeq 11
         8: .line 69
            aload 0 /* this */
            getfield io.vertx.serviceproxy.generator.model.ProxyModel.elementUtils:Ljavax/lang/model/util/Elements;
            aload 0 /* this */
            getfield io.vertx.serviceproxy.generator.model.ProxyModel.typeUtils:Ljavax/lang/model/util/Types;
            aload 2 /* type */
            checkcast javax.lang.model.type.DeclaredType
            invokeinterface javax.lang.model.type.DeclaredType.asElement:()Ljavax/lang/model/element/Element;
            checkcast javax.lang.model.element.TypeElement
            invokestatic io.vertx.codegen.Helper.isJsonifiable:(Ljavax/lang/model/util/Elements;Ljavax/lang/model/util/Types;Ljavax/lang/model/element/TypeElement;)Z
            ifeq 10
         9: .line 70
            return
        10: .line 72
      StackMap locals:
      StackMap stack:
            new io.vertx.codegen.GenException
            dup
            aload 1 /* elem */
            new java.lang.StringBuilder
            dup
            ldc "type "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 3 /* typeInfo */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " does not have a valid 'public JsonObject toJson()' method."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial io.vertx.codegen.GenException.<init>:(Ljavax/lang/model/element/Element;Ljava/lang/String;)V
            athrow
        11: .line 75
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* typeInfo */
            invokevirtual io.vertx.serviceproxy.generator.model.ProxyModel.isLegalHandlerAsyncResultType:(Lio/vertx/codegen/type/TypeInfo;)Z
            ifeq 15
        12: .line 76
            iload 4 /* pos */
            iload 5 /* numParams */
            iconst_1
            isub
            if_icmpeq 14
        13: .line 77
            new io.vertx.codegen.GenException
            dup
            aload 1 /* elem */
            ldc "Handler<AsyncResult<T>> must be the last parameter if present in a proxied method"
            invokespecial io.vertx.codegen.GenException.<init>:(Ljavax/lang/model/element/Element;Ljava/lang/String;)V
            athrow
        14: .line 79
      StackMap locals:
      StackMap stack:
            return
        15: .line 81
      StackMap locals:
      StackMap stack:
            aload 1 /* elem */
            invokeinterface javax.lang.model.element.ExecutableElement.getModifiers:()Ljava/util/Set;
            getstatic javax.lang.model.element.Modifier.STATIC:Ljavax/lang/model/element/Modifier;
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ifeq 17
        16: .line 83
            return
        17: .line 85
      StackMap locals:
      StackMap stack:
            new io.vertx.codegen.GenException
            dup
            aload 1 /* elem */
            new java.lang.StringBuilder
            dup
            ldc "type "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 3 /* typeInfo */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " is not legal for use for a parameter in proxy"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial io.vertx.codegen.GenException.<init>:(Ljavax/lang/model/element/Element;Ljava/lang/String;)V
            athrow
        end local 6 // boolean allowAnyJavaType
        end local 5 // int numParams
        end local 4 // int pos
        end local 3 // io.vertx.codegen.type.TypeInfo typeInfo
        end local 2 // javax.lang.model.type.TypeMirror type
        end local 1 // javax.lang.model.element.ExecutableElement elem
        end local 0 // io.vertx.serviceproxy.generator.model.ProxyModel this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   18     0              this  Lio/vertx/serviceproxy/generator/model/ProxyModel;
            0   18     1              elem  Ljavax/lang/model/element/ExecutableElement;
            0   18     2              type  Ljavax/lang/model/type/TypeMirror;
            0   18     3          typeInfo  Lio/vertx/codegen/type/TypeInfo;
            0   18     4               pos  I
            0   18     5         numParams  I
            0   18     6  allowAnyJavaType  Z
    MethodParameters:
                  Name  Flags
      elem              
      type              
      typeInfo          
      pos               
      numParams         
      allowAnyJavaType  

  protected void checkReturnType(javax.lang.model.element.ExecutableElement, io.vertx.codegen.type.TypeInfo, javax.lang.model.type.TypeMirror, boolean);
    descriptor: (Ljavax/lang/model/element/ExecutableElement;Lio/vertx/codegen/type/TypeInfo;Ljavax/lang/model/type/TypeMirror;Z)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // io.vertx.serviceproxy.generator.model.ProxyModel this
        start local 1 // javax.lang.model.element.ExecutableElement elem
        start local 2 // io.vertx.codegen.type.TypeInfo type
        start local 3 // javax.lang.model.type.TypeMirror typeMirror
        start local 4 // boolean allowAnyJavaType
         0: .line 91
            aload 1 /* elem */
            invokeinterface javax.lang.model.element.ExecutableElement.getModifiers:()Ljava/util/Set;
            getstatic javax.lang.model.element.Modifier.STATIC:Ljavax/lang/model/element/Modifier;
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 93
            return
         2: .line 95
      StackMap locals:
      StackMap stack:
            aload 2 /* type */
            invokevirtual io.vertx.codegen.type.TypeInfo.isVoid:()Z
            ifeq 4
         3: .line 96
            return
         4: .line 99
      StackMap locals:
      StackMap stack:
            new io.vertx.codegen.GenException
            dup
            aload 1 /* elem */
            ldc "Proxy methods must have void or Fluent returns"
            invokespecial io.vertx.codegen.GenException.<init>:(Ljavax/lang/model/element/Element;Ljava/lang/String;)V
            athrow
        end local 4 // boolean allowAnyJavaType
        end local 3 // javax.lang.model.type.TypeMirror typeMirror
        end local 2 // io.vertx.codegen.type.TypeInfo type
        end local 1 // javax.lang.model.element.ExecutableElement elem
        end local 0 // io.vertx.serviceproxy.generator.model.ProxyModel this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    5     0              this  Lio/vertx/serviceproxy/generator/model/ProxyModel;
            0    5     1              elem  Ljavax/lang/model/element/ExecutableElement;
            0    5     2              type  Lio/vertx/codegen/type/TypeInfo;
            0    5     3        typeMirror  Ljavax/lang/model/type/TypeMirror;
            0    5     4  allowAnyJavaType  Z
    MethodParameters:
                  Name  Flags
      elem              
      type              
      typeMirror        
      allowAnyJavaType  

  protected void checkMethod(io.vertx.codegen.MethodInfo);
    descriptor: (Lio/vertx/codegen/MethodInfo;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // io.vertx.serviceproxy.generator.model.ProxyModel this
        start local 1 // io.vertx.codegen.MethodInfo methodInfo
         0: .line 105
            aload 0 /* this */
            getfield io.vertx.serviceproxy.generator.model.ProxyModel.methodMap:Ljava/util/Map;
            aload 1 /* methodInfo */
            invokevirtual io.vertx.codegen.MethodInfo.getName:()Ljava/lang/String;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.List
            astore 2 /* methodsByName */
        start local 2 // java.util.List methodsByName
         1: .line 106
            aload 2 /* methodsByName */
            ifnull 3
         2: .line 107
            new io.vertx.codegen.GenException
            dup
            aload 0 /* this */
            getfield io.vertx.serviceproxy.generator.model.ProxyModel.modelElt:Ljavax/lang/model/element/TypeElement;
            new java.lang.StringBuilder
            dup
            ldc "Overloaded methods are not allowed in ProxyGen interfaces "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* methodInfo */
            invokevirtual io.vertx.codegen.MethodInfo.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial io.vertx.codegen.GenException.<init>:(Ljavax/lang/model/element/Element;Ljava/lang/String;)V
            athrow
         3: .line 109
      StackMap locals: java.util.List
      StackMap stack:
            return
        end local 2 // java.util.List methodsByName
        end local 1 // io.vertx.codegen.MethodInfo methodInfo
        end local 0 // io.vertx.serviceproxy.generator.model.ProxyModel this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lio/vertx/serviceproxy/generator/model/ProxyModel;
            0    4     1     methodInfo  Lio/vertx/codegen/MethodInfo;
            1    4     2  methodsByName  Ljava/util/List<Lio/vertx/codegen/MethodInfo;>;
    MethodParameters:
            Name  Flags
      methodInfo  

  protected io.vertx.codegen.MethodInfo createMethodInfo(java.util.Set<io.vertx.codegen.type.ClassTypeInfo>, java.lang.String, java.lang.String, io.vertx.codegen.doc.Doc, io.vertx.codegen.type.TypeInfo, io.vertx.codegen.doc.Text, boolean, boolean, java.util.List<io.vertx.codegen.ParamInfo>, javax.lang.model.element.ExecutableElement, boolean, boolean, java.util.ArrayList<io.vertx.codegen.TypeParamInfo$Method>, javax.lang.model.element.TypeElement, boolean, io.vertx.codegen.doc.Text);
    descriptor: (Ljava/util/Set;Ljava/lang/String;Ljava/lang/String;Lio/vertx/codegen/doc/Doc;Lio/vertx/codegen/type/TypeInfo;Lio/vertx/codegen/doc/Text;ZZLjava/util/List;Ljavax/lang/model/element/ExecutableElement;ZZLjava/util/ArrayList;Ljavax/lang/model/element/TypeElement;ZLio/vertx/codegen/doc/Text;)Lio/vertx/codegen/MethodInfo;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=18, locals=24, args_size=17
        start local 0 // io.vertx.serviceproxy.generator.model.ProxyModel this
        start local 1 // java.util.Set ownerTypes
        start local 2 // java.lang.String methodName
        start local 3 // java.lang.String comment
        start local 4 // io.vertx.codegen.doc.Doc doc
        start local 5 // io.vertx.codegen.type.TypeInfo returnType
        start local 6 // io.vertx.codegen.doc.Text returnDescription
        start local 7 // boolean isFluent
        start local 8 // boolean isCacheReturn
        start local 9 // java.util.List mParams
        start local 10 // javax.lang.model.element.ExecutableElement methodElt
        start local 11 // boolean isStatic
        start local 12 // boolean isDefault
        start local 13 // java.util.ArrayList typeParams
        start local 14 // javax.lang.model.element.TypeElement declaringElt
        start local 15 // boolean methodDeprecated
        start local 16 // io.vertx.codegen.doc.Text methodDeprecatedDesc
         0: .line 113
            ldc Lio/vertx/codegen/annotations/ProxyIgnore;
            aload 0 /* this */
            getfield io.vertx.serviceproxy.generator.model.ProxyModel.elementUtils:Ljavax/lang/model/util/Elements;
            aload 0 /* this */
            getfield io.vertx.serviceproxy.generator.model.ProxyModel.typeUtils:Ljavax/lang/model/util/Types;
            aload 14 /* declaringElt */
            aload 10 /* methodElt */
            invokestatic io.vertx.codegen.Helper.resolveMethodAnnotation:(Ljava/lang/Class;Ljavax/lang/model/util/Elements;Ljavax/lang/model/util/Types;Ljavax/lang/model/element/TypeElement;Ljavax/lang/model/element/ExecutableElement;)Ljavax/lang/model/element/AnnotationMirror;
            astore 17 /* proxyIgnoreAnnotation */
        start local 17 // javax.lang.model.element.AnnotationMirror proxyIgnoreAnnotation
         1: .line 114
            aload 17 /* proxyIgnoreAnnotation */
            ifnull 2
            iconst_1
            goto 3
      StackMap locals: javax.lang.model.element.AnnotationMirror
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: istore 18 /* isProxyIgnore */
        start local 18 // boolean isProxyIgnore
         4: .line 115
            ldc Lio/vertx/codegen/annotations/ProxyClose;
            aload 0 /* this */
            getfield io.vertx.serviceproxy.generator.model.ProxyModel.elementUtils:Ljavax/lang/model/util/Elements;
            aload 0 /* this */
            getfield io.vertx.serviceproxy.generator.model.ProxyModel.typeUtils:Ljavax/lang/model/util/Types;
            aload 14 /* declaringElt */
            aload 10 /* methodElt */
            invokestatic io.vertx.codegen.Helper.resolveMethodAnnotation:(Ljava/lang/Class;Ljavax/lang/model/util/Elements;Ljavax/lang/model/util/Types;Ljavax/lang/model/element/TypeElement;Ljavax/lang/model/element/ExecutableElement;)Ljavax/lang/model/element/AnnotationMirror;
            astore 19 /* proxyCloseAnnotation */
        start local 19 // javax.lang.model.element.AnnotationMirror proxyCloseAnnotation
         5: .line 116
            aload 19 /* proxyCloseAnnotation */
            ifnull 6
            iconst_1
            goto 7
      StackMap locals: int javax.lang.model.element.AnnotationMirror
      StackMap stack:
         6: iconst_0
      StackMap locals:
      StackMap stack: int
         7: istore 20 /* isProxyClose */
        start local 20 // boolean isProxyClose
         8: .line 117
            new io.vertx.serviceproxy.generator.model.ProxyMethodInfo
            dup
            aload 1 /* ownerTypes */
            aload 2 /* methodName */
            aload 5 /* returnType */
            aload 6 /* returnDescription */
         9: .line 118
            iload 7 /* isFluent */
            iload 8 /* isCacheReturn */
            aload 9 /* mParams */
            aload 3 /* comment */
            aload 4 /* doc */
            iload 11 /* isStatic */
            iload 12 /* isDefault */
            aload 13 /* typeParams */
            iload 18 /* isProxyIgnore */
        10: .line 119
            iload 20 /* isProxyClose */
            iload 15 /* methodDeprecated */
            aload 16 /* methodDeprecatedDesc */
        11: .line 117
            invokespecial io.vertx.serviceproxy.generator.model.ProxyMethodInfo.<init>:(Ljava/util/Set;Ljava/lang/String;Lio/vertx/codegen/type/TypeInfo;Lio/vertx/codegen/doc/Text;ZZLjava/util/List;Ljava/lang/String;Lio/vertx/codegen/doc/Doc;ZZLjava/util/List;ZZZLio/vertx/codegen/doc/Text;)V
            astore 21 /* proxyMeth */
        start local 21 // io.vertx.serviceproxy.generator.model.ProxyMethodInfo proxyMeth
        12: .line 120
            iload 20 /* isProxyClose */
            ifeq 23
            aload 9 /* mParams */
            invokeinterface java.util.List.size:()I
            ifle 23
        13: .line 121
            aload 9 /* mParams */
            invokeinterface java.util.List.size:()I
            iconst_1
            if_icmple 15
        14: .line 122
            new io.vertx.codegen.GenException
            dup
            aload 0 /* this */
            getfield io.vertx.serviceproxy.generator.model.ProxyModel.modelElt:Ljavax/lang/model/element/TypeElement;
            ldc "@ProxyClose methods can't have more than one parameter"
            invokespecial io.vertx.codegen.GenException.<init>:(Ljavax/lang/model/element/Element;Ljava/lang/String;)V
            athrow
        15: .line 124
      StackMap locals: int io.vertx.serviceproxy.generator.model.ProxyMethodInfo
      StackMap stack:
            aload 21 /* proxyMeth */
            invokevirtual io.vertx.serviceproxy.generator.model.ProxyMethodInfo.getKind:()Lio/vertx/codegen/MethodKind;
            getstatic io.vertx.codegen.MethodKind.FUTURE:Lio/vertx/codegen/MethodKind;
            if_acmpeq 17
        16: .line 125
            new io.vertx.codegen.GenException
            dup
            aload 0 /* this */
            getfield io.vertx.serviceproxy.generator.model.ProxyModel.modelElt:Ljavax/lang/model/element/TypeElement;
            ldc "@ProxyClose parameter must be Handler<AsyncResult<Void>>"
            invokespecial io.vertx.codegen.GenException.<init>:(Ljavax/lang/model/element/Element;Ljava/lang/String;)V
            athrow
        17: .line 127
      StackMap locals:
      StackMap stack:
            aload 9 /* mParams */
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast io.vertx.codegen.ParamInfo
            invokevirtual io.vertx.codegen.ParamInfo.getType:()Lio/vertx/codegen/type/TypeInfo;
            astore 22 /* type */
        start local 22 // io.vertx.codegen.type.TypeInfo type
        18: .line 128
            aload 22 /* type */
            checkcast io.vertx.codegen.type.ParameterizedTypeInfo
            invokevirtual io.vertx.codegen.type.ParameterizedTypeInfo.getArgs:()Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast io.vertx.codegen.type.ParameterizedTypeInfo
            invokevirtual io.vertx.codegen.type.ParameterizedTypeInfo.getArgs:()Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast io.vertx.codegen.type.TypeInfo
            astore 23 /* arg */
        start local 23 // io.vertx.codegen.type.TypeInfo arg
        19: .line 129
            aload 23 /* arg */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getstatic io.vertx.codegen.type.ClassKind.VOID:Lio/vertx/codegen/type/ClassKind;
            if_acmpeq 23
        20: .line 130
            new io.vertx.codegen.GenException
            dup
            aload 0 /* this */
            getfield io.vertx.serviceproxy.generator.model.ProxyModel.modelElt:Ljavax/lang/model/element/TypeElement;
            new java.lang.StringBuilder
            dup
            ldc "@ProxyClose parameter must be Handler<AsyncResult<Void>> instead of "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        21: .line 131
            aload 22 /* type */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        22: .line 130
            invokespecial io.vertx.codegen.GenException.<init>:(Ljavax/lang/model/element/Element;Ljava/lang/String;)V
            athrow
        end local 23 // io.vertx.codegen.type.TypeInfo arg
        end local 22 // io.vertx.codegen.type.TypeInfo type
        23: .line 134
      StackMap locals:
      StackMap stack:
            aload 21 /* proxyMeth */
            areturn
        end local 21 // io.vertx.serviceproxy.generator.model.ProxyMethodInfo proxyMeth
        end local 20 // boolean isProxyClose
        end local 19 // javax.lang.model.element.AnnotationMirror proxyCloseAnnotation
        end local 18 // boolean isProxyIgnore
        end local 17 // javax.lang.model.element.AnnotationMirror proxyIgnoreAnnotation
        end local 16 // io.vertx.codegen.doc.Text methodDeprecatedDesc
        end local 15 // boolean methodDeprecated
        end local 14 // javax.lang.model.element.TypeElement declaringElt
        end local 13 // java.util.ArrayList typeParams
        end local 12 // boolean isDefault
        end local 11 // boolean isStatic
        end local 10 // javax.lang.model.element.ExecutableElement methodElt
        end local 9 // java.util.List mParams
        end local 8 // boolean isCacheReturn
        end local 7 // boolean isFluent
        end local 6 // io.vertx.codegen.doc.Text returnDescription
        end local 5 // io.vertx.codegen.type.TypeInfo returnType
        end local 4 // io.vertx.codegen.doc.Doc doc
        end local 3 // java.lang.String comment
        end local 2 // java.lang.String methodName
        end local 1 // java.util.Set ownerTypes
        end local 0 // io.vertx.serviceproxy.generator.model.ProxyModel this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0   24     0                   this  Lio/vertx/serviceproxy/generator/model/ProxyModel;
            0   24     1             ownerTypes  Ljava/util/Set<Lio/vertx/codegen/type/ClassTypeInfo;>;
            0   24     2             methodName  Ljava/lang/String;
            0   24     3                comment  Ljava/lang/String;
            0   24     4                    doc  Lio/vertx/codegen/doc/Doc;
            0   24     5             returnType  Lio/vertx/codegen/type/TypeInfo;
            0   24     6      returnDescription  Lio/vertx/codegen/doc/Text;
            0   24     7               isFluent  Z
            0   24     8          isCacheReturn  Z
            0   24     9                mParams  Ljava/util/List<Lio/vertx/codegen/ParamInfo;>;
            0   24    10              methodElt  Ljavax/lang/model/element/ExecutableElement;
            0   24    11               isStatic  Z
            0   24    12              isDefault  Z
            0   24    13             typeParams  Ljava/util/ArrayList<Lio/vertx/codegen/TypeParamInfo$Method;>;
            0   24    14           declaringElt  Ljavax/lang/model/element/TypeElement;
            0   24    15       methodDeprecated  Z
            0   24    16   methodDeprecatedDesc  Lio/vertx/codegen/doc/Text;
            1   24    17  proxyIgnoreAnnotation  Ljavax/lang/model/element/AnnotationMirror;
            4   24    18          isProxyIgnore  Z
            5   24    19   proxyCloseAnnotation  Ljavax/lang/model/element/AnnotationMirror;
            8   24    20           isProxyClose  Z
           12   24    21              proxyMeth  Lio/vertx/serviceproxy/generator/model/ProxyMethodInfo;
           18   23    22                   type  Lio/vertx/codegen/type/TypeInfo;
           19   23    23                    arg  Lio/vertx/codegen/type/TypeInfo;
    Signature: (Ljava/util/Set<Lio/vertx/codegen/type/ClassTypeInfo;>;Ljava/lang/String;Ljava/lang/String;Lio/vertx/codegen/doc/Doc;Lio/vertx/codegen/type/TypeInfo;Lio/vertx/codegen/doc/Text;ZZLjava/util/List<Lio/vertx/codegen/ParamInfo;>;Ljavax/lang/model/element/ExecutableElement;ZZLjava/util/ArrayList<Lio/vertx/codegen/TypeParamInfo$Method;>;Ljavax/lang/model/element/TypeElement;ZLio/vertx/codegen/doc/Text;)Lio/vertx/codegen/MethodInfo;
    MethodParameters:
                      Name  Flags
      ownerTypes            
      methodName            
      comment               
      doc                   
      returnType            
      returnDescription     
      isFluent              
      isCacheReturn         
      mParams               
      methodElt             
      isStatic              
      isDefault             
      typeParams            
      declaringElt          
      methodDeprecated      
      methodDeprecatedDesc  

  private boolean isLegalHandlerAsyncResultType(io.vertx.codegen.type.TypeInfo);
    descriptor: (Lio/vertx/codegen/type/TypeInfo;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // io.vertx.serviceproxy.generator.model.ProxyModel this
        start local 1 // io.vertx.codegen.type.TypeInfo type
         0: .line 138
            aload 1 /* type */
            invokevirtual io.vertx.codegen.type.TypeInfo.getErased:()Lio/vertx/codegen/type/TypeInfo;
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getstatic io.vertx.codegen.type.ClassKind.HANDLER:Lio/vertx/codegen/type/ClassKind;
            if_acmpne 12
         1: .line 139
            aload 1 /* type */
            checkcast io.vertx.codegen.type.ParameterizedTypeInfo
            invokevirtual io.vertx.codegen.type.ParameterizedTypeInfo.getArgs:()Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast io.vertx.codegen.type.TypeInfo
            astore 2 /* eventType */
        start local 2 // io.vertx.codegen.type.TypeInfo eventType
         2: .line 140
            aload 2 /* eventType */
            invokevirtual io.vertx.codegen.type.TypeInfo.getErased:()Lio/vertx/codegen/type/TypeInfo;
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getstatic io.vertx.codegen.type.ClassKind.ASYNC_RESULT:Lio/vertx/codegen/type/ClassKind;
            if_acmpne 12
         3: .line 141
            aload 2 /* eventType */
            checkcast io.vertx.codegen.type.ParameterizedTypeInfo
            invokevirtual io.vertx.codegen.type.ParameterizedTypeInfo.getArgs:()Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast io.vertx.codegen.type.TypeInfo
            astore 3 /* resultType */
        start local 3 // io.vertx.codegen.type.TypeInfo resultType
         4: .line 142
            aload 3 /* resultType */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getfield io.vertx.codegen.type.ClassKind.json:Z
            ifne 7
            aload 3 /* resultType */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getfield io.vertx.codegen.type.ClassKind.basic:Z
            ifne 7
         5: .line 143
            aload 0 /* this */
            aload 3 /* resultType */
            invokevirtual io.vertx.serviceproxy.generator.model.ProxyModel.isLegalListSetMapResult:(Lio/vertx/codegen/type/TypeInfo;)Z
            ifne 7
            aload 3 /* resultType */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getstatic io.vertx.codegen.type.ClassKind.VOID:Lio/vertx/codegen/type/ClassKind;
            if_acmpeq 7
         6: .line 144
            aload 3 /* resultType */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getstatic io.vertx.codegen.type.ClassKind.ENUM:Lio/vertx/codegen/type/ClassKind;
            if_acmpeq 7
            aload 3 /* resultType */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getstatic io.vertx.codegen.type.ClassKind.DATA_OBJECT:Lio/vertx/codegen/type/ClassKind;
            if_acmpne 8
         7: .line 145
      StackMap locals: io.vertx.codegen.type.TypeInfo io.vertx.codegen.type.TypeInfo
      StackMap stack:
            iconst_1
            ireturn
         8: .line 147
      StackMap locals:
      StackMap stack:
            aload 3 /* resultType */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getstatic io.vertx.codegen.type.ClassKind.API:Lio/vertx/codegen/type/ClassKind;
            if_acmpne 12
         9: .line 148
            aload 3 /* resultType */
            checkcast io.vertx.codegen.type.ApiTypeInfo
            astore 4 /* cla */
        start local 4 // io.vertx.codegen.type.ApiTypeInfo cla
        10: .line 149
            aload 4 /* cla */
            invokevirtual io.vertx.codegen.type.ApiTypeInfo.isProxyGen:()Z
            ifeq 12
        11: .line 150
            iconst_1
            ireturn
        end local 4 // io.vertx.codegen.type.ApiTypeInfo cla
        end local 3 // io.vertx.codegen.type.TypeInfo resultType
        end local 2 // io.vertx.codegen.type.TypeInfo eventType
        12: .line 155
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // io.vertx.codegen.type.TypeInfo type
        end local 0 // io.vertx.serviceproxy.generator.model.ProxyModel this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   13     0        this  Lio/vertx/serviceproxy/generator/model/ProxyModel;
            0   13     1        type  Lio/vertx/codegen/type/TypeInfo;
            2   12     2   eventType  Lio/vertx/codegen/type/TypeInfo;
            4   12     3  resultType  Lio/vertx/codegen/type/TypeInfo;
           10   12     4         cla  Lio/vertx/codegen/type/ApiTypeInfo;
    MethodParameters:
      Name  Flags
      type  

  private boolean isLegalListSetMapResult(io.vertx.codegen.type.TypeInfo);
    descriptor: (Lio/vertx/codegen/type/TypeInfo;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.serviceproxy.generator.model.ProxyModel this
        start local 1 // io.vertx.codegen.type.TypeInfo type
         0: .line 159
            aload 1 /* type */
            instanceof io.vertx.codegen.type.ParameterizedTypeInfo
            ifeq 5
         1: .line 160
            aload 1 /* type */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getstatic io.vertx.codegen.type.ClassKind.LIST:Lio/vertx/codegen/type/ClassKind;
            if_acmpeq 2
            aload 1 /* type */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getstatic io.vertx.codegen.type.ClassKind.SET:Lio/vertx/codegen/type/ClassKind;
            if_acmpne 5
         2: .line 161
      StackMap locals:
      StackMap stack:
            aload 1 /* type */
            checkcast io.vertx.codegen.type.ParameterizedTypeInfo
            invokevirtual io.vertx.codegen.type.ParameterizedTypeInfo.getArgs:()Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast io.vertx.codegen.type.TypeInfo
            astore 2 /* elementType */
        start local 2 // io.vertx.codegen.type.TypeInfo elementType
         3: .line 162
            aload 2 /* elementType */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getfield io.vertx.codegen.type.ClassKind.basic:Z
            ifne 4
            aload 2 /* elementType */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getfield io.vertx.codegen.type.ClassKind.json:Z
            ifne 4
            aload 2 /* elementType */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getstatic io.vertx.codegen.type.ClassKind.DATA_OBJECT:Lio/vertx/codegen/type/ClassKind;
            if_acmpne 5
         4: .line 163
      StackMap locals: io.vertx.codegen.type.TypeInfo
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // io.vertx.codegen.type.TypeInfo elementType
         5: .line 167
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // io.vertx.codegen.type.TypeInfo type
        end local 0 // io.vertx.serviceproxy.generator.model.ProxyModel this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lio/vertx/serviceproxy/generator/model/ProxyModel;
            0    6     1         type  Lio/vertx/codegen/type/TypeInfo;
            3    5     2  elementType  Lio/vertx/codegen/type/TypeInfo;
    MethodParameters:
      Name  Flags
      type  

  protected boolean isLegalContainerParam(io.vertx.codegen.type.TypeInfo);
    descriptor: (Lio/vertx/codegen/type/TypeInfo;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // io.vertx.serviceproxy.generator.model.ProxyModel this
        start local 1 // io.vertx.codegen.type.TypeInfo type
         0: .line 173
            aload 1 /* type */
            invokevirtual io.vertx.codegen.type.TypeInfo.getRaw:()Lio/vertx/codegen/type/ClassTypeInfo;
            astore 2 /* raw */
        start local 2 // io.vertx.codegen.type.TypeInfo raw
         1: .line 174
            aload 2 /* raw */
            invokevirtual io.vertx.codegen.type.TypeInfo.getName:()Ljava/lang/String;
            ldc Ljava/util/List;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 2
            aload 2 /* raw */
            invokevirtual io.vertx.codegen.type.TypeInfo.getName:()Ljava/lang/String;
            ldc Ljava/util/Set;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 5
         2: .line 175
      StackMap locals: io.vertx.codegen.type.TypeInfo
      StackMap stack:
            aload 1 /* type */
            checkcast io.vertx.codegen.type.ParameterizedTypeInfo
            invokevirtual io.vertx.codegen.type.ParameterizedTypeInfo.getArgs:()Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast io.vertx.codegen.type.TypeInfo
            astore 3 /* argument */
        start local 3 // io.vertx.codegen.type.TypeInfo argument
         3: .line 176
            aload 3 /* argument */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getfield io.vertx.codegen.type.ClassKind.basic:Z
            ifne 4
            aload 3 /* argument */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getfield io.vertx.codegen.type.ClassKind.json:Z
            ifne 4
            aload 3 /* argument */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getstatic io.vertx.codegen.type.ClassKind.DATA_OBJECT:Lio/vertx/codegen/type/ClassKind;
            if_acmpne 12
         4: .line 177
      StackMap locals: io.vertx.codegen.type.TypeInfo
      StackMap stack:
            iconst_1
            ireturn
        end local 3 // io.vertx.codegen.type.TypeInfo argument
         5: .line 179
      StackMap locals:
      StackMap stack:
            aload 2 /* raw */
            invokevirtual io.vertx.codegen.type.TypeInfo.getName:()Ljava/lang/String;
            ldc Ljava/util/Map;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 12
         6: .line 180
            aload 1 /* type */
            checkcast io.vertx.codegen.type.ParameterizedTypeInfo
            invokevirtual io.vertx.codegen.type.ParameterizedTypeInfo.getArgs:()Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast io.vertx.codegen.type.TypeInfo
            astore 3 /* argument0 */
        start local 3 // io.vertx.codegen.type.TypeInfo argument0
         7: .line 181
            aload 3 /* argument0 */
            invokevirtual io.vertx.codegen.type.TypeInfo.getName:()Ljava/lang/String;
            ldc Ljava/lang/String;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 9
         8: .line 182
            iconst_0
            ireturn
         9: .line 184
      StackMap locals: io.vertx.codegen.type.TypeInfo
      StackMap stack:
            aload 1 /* type */
            checkcast io.vertx.codegen.type.ParameterizedTypeInfo
            invokevirtual io.vertx.codegen.type.ParameterizedTypeInfo.getArgs:()Ljava/util/List;
            iconst_1
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast io.vertx.codegen.type.TypeInfo
            astore 4 /* argument1 */
        start local 4 // io.vertx.codegen.type.TypeInfo argument1
        10: .line 185
            aload 4 /* argument1 */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getfield io.vertx.codegen.type.ClassKind.basic:Z
            ifne 11
            aload 4 /* argument1 */
            invokevirtual io.vertx.codegen.type.TypeInfo.getKind:()Lio/vertx/codegen/type/ClassKind;
            getfield io.vertx.codegen.type.ClassKind.json:Z
            ifeq 12
        11: .line 186
      StackMap locals: io.vertx.codegen.type.TypeInfo
      StackMap stack:
            iconst_1
            ireturn
        end local 4 // io.vertx.codegen.type.TypeInfo argument1
        end local 3 // io.vertx.codegen.type.TypeInfo argument0
        12: .line 189
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // io.vertx.codegen.type.TypeInfo raw
        end local 1 // io.vertx.codegen.type.TypeInfo type
        end local 0 // io.vertx.serviceproxy.generator.model.ProxyModel this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0       this  Lio/vertx/serviceproxy/generator/model/ProxyModel;
            0   13     1       type  Lio/vertx/codegen/type/TypeInfo;
            1   13     2        raw  Lio/vertx/codegen/type/TypeInfo;
            3    5     3   argument  Lio/vertx/codegen/type/TypeInfo;
            7   12     3  argument0  Lio/vertx/codegen/type/TypeInfo;
           10   12     4  argument1  Lio/vertx/codegen/type/TypeInfo;
    MethodParameters:
      Name  Flags
      type  
}
SourceFile: "ProxyModel.java"
InnerClasses:
  public Method = io.vertx.codegen.TypeParamInfo$Method of io.vertx.codegen.TypeParamInfo