org.mule.util.generics
Interface ParameterNameDiscoverer


public interface ParameterNameDiscoverer

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: Spring


Method Summary
 java.lang.String[] getParameterNames(java.lang.reflect.Constructor ctor)
          Return parameter names for this constructor, or null if they cannot be determined.
 java.lang.String[] getParameterNames(java.lang.reflect.Method method)
          Return parameter names for this method, or null if they cannot be determined.
 

Method Detail

getParameterNames

java.lang.String[] getParameterNames(java.lang.reflect.Method method)
Return parameter names for this method, or null if they cannot be determined.

Parameters:
method - method to find parameter names for
Returns:
an array of parameter names if the names can be resolved, or null if they cannot

getParameterNames

java.lang.String[] getParameterNames(java.lang.reflect.Constructor ctor)
Return parameter names for this constructor, or null if they cannot be determined.

Parameters:
ctor - constructor to find parameter names for
Returns:
an array of parameter names if the names can be resolved, or null if they cannot


Copyright © 2003-2010 MuleSoft, Inc.. All Rights Reserved.