| org.springframework.core.ParameterNameDiscoverer
All known Subclasses: org.springframework.aop.aspectj.AspectJAdviceParameterNameDiscoverer, org.springframework.core.PrioritizedParameterNameDiscoverer, org.springframework.core.LocalVariableTableParameterNameDiscoverer,
ParameterNameDiscoverer | public interface ParameterNameDiscoverer (Code) | | Interface to discover parameter names for methods and constructors.
Parameter name discovery is not always possible, but various strategies are
available to try, such as looking for debug information that may have been
emitted at compile time, and looking for argname annotation values optionally
accompanying AspectJ annotated methods.
author: Rod Johnson author: Adrian Colyer since: 2.0 |
getParameterNames | String[] getParameterNames(Method method)(Code) | | Return parameter names for this method,
or null if they cannot be determined.
Parameters: method - method to find parameter names for an array of parameter names if the names can be resolved,or null if they cannot |
getParameterNames | String[] getParameterNames(Constructor ctor)(Code) | | Return parameter names for this constructor,
or null if they cannot be determined.
Parameters: ctor - constructor to find parameter names for an array of parameter names if the names can be resolved,or null if they cannot |
|
|