| java.lang.Object org.springframework.binding.method.MethodSignature
MethodSignature | public class MethodSignature (Code) | | A specification for a method consisting of the methodName and an optional set
of named arguments. This class provides the ability to resolve a method with
parameters and evaluate its argument values as part of a
MethodInvoker method invoker attempt .
author: Keith Donald |
MethodSignature | public MethodSignature(String methodName)(Code) | | Creates a method signature with no parameters.
Parameters: methodName - the name of the method |
MethodSignature | public MethodSignature(String methodName, Parameter parameter)(Code) | | Creates a method signature with a single parameter.
Parameters: methodName - the name of the method Parameters: parameter - the method parameter |
MethodSignature | public MethodSignature(String methodName, Parameters parameters)(Code) | | Creates a method signature with a list of parameters.
Parameters: methodName - the name of the method Parameters: parameters - the method parameters |
getMethodName | public String getMethodName()(Code) | | Returns the method name.
|
getParameters | public Parameters getParameters()(Code) | | Returns the method parameters.
|
hashCode | public int hashCode()(Code) | | |
|
|