MethodInfopublic class MethodInfo extends Object
Fields Summary |
---|
private final String | name | private final Class[] | paramTypes | private final Class | returnType |
Constructors Summary |
---|
public MethodInfo(String name, Class returnType, Class[] paramTypes)
this.name = name;
this.returnType = returnType;
this.paramTypes = paramTypes;
|
|