FileDocCategorySizeDatePackage
MethodInfo.javaAPI DocApache Tomcat 6.0.141488Fri Jul 20 04:20:36 BST 2007javax.el

MethodInfo

public 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;
    
Methods Summary
public java.lang.StringgetName()

        return this.name;
    
public java.lang.Class[]getParamTypes()

        return this.paramTypes;
    
public java.lang.ClassgetReturnType()

        return this.returnType;