| java.lang.Object javax.el.MethodInfo
MethodInfo | public class MethodInfo (Code) | | Holds information about a method that a
MethodExpression
evaluated to.
since: JSP 2.1 |
Constructor Summary | |
public | MethodInfo(String name, Class> returnType, Class>[] paramTypes) Creates a new instance of MethodInfo with the given
information. |
MethodInfo | public MethodInfo(String name, Class> returnType, Class>[] paramTypes)(Code) | | Creates a new instance of MethodInfo with the given
information.
Parameters: name - The name of the method Parameters: returnType - The return type of the method Parameters: paramTypes - The types of each of the method's parameters |
getName | public String getName()(Code) | | Returns the name of the method
the name of the method |
getParamTypes | public Class>[] getParamTypes()(Code) | | Returns the parameter types of the method
the parameter types of the method |
getReturnType | public Class> getReturnType()(Code) | | Returns the return type of the method
the return type of the method |
|
|