Package | Description |
---|---|
io.vertx.codegen |
Modifier and Type | Method and Description |
---|---|
ParamInfo |
TypeArgExpression.getParam() |
ParamInfo |
MethodInfo.getParam(int index) |
ParamInfo |
MethodInfo.resolveClassTypeParam(TypeVariableInfo typeVar)
Resolve the method parameter that is of kind
ClassKind.CLASS_TYPE and that matches the specified type variable e.g:<U> Map.Entry<String, U> getEntry(String s, Class<U> type);
returns for <U> the second method parameter. |
Modifier and Type | Method and Description |
---|---|
List<ParamInfo> |
MethodInfo.getParams() |
List<ParamInfo> |
Signature.getParams() |
Modifier and Type | Method and Description |
---|---|
protected MethodInfo |
ClassModel.createMethodInfo(Set<ClassTypeInfo> ownerTypes,
String methodName,
String comment,
Doc doc,
TypeInfo returnType,
Text returnDescription,
boolean isFluent,
boolean isCacheReturn,
List<ParamInfo> mParams,
ExecutableElement methodElt,
boolean isStatic,
boolean isDefault,
ArrayList<TypeParamInfo.Method> typeParams,
TypeElement declaringElt,
boolean methodDeprecated,
Text methodDeprecatedDesc) |
MethodInfo |
MethodInfo.setParams(List<ParamInfo> params) |
Constructor and Description |
---|
MethodInfo(Set<ClassTypeInfo> ownerTypes,
String name,
TypeInfo returnType,
Text returnDescription,
boolean fluent,
boolean cacheReturn,
List<ParamInfo> params,
String comment,
Doc doc,
boolean staticMethod,
boolean defaultMethod,
List<TypeParamInfo.Method> typeParams,
boolean deprecated,
Text deprecatedDesc) |
Signature(String name,
List<ParamInfo> params) |
Copyright © 2020 Eclipse. All rights reserved.