Package org.apache.xbean.recipe
Interface ParameterNameLoader
-
- All Known Implementing Classes:
AsmParameterNameLoader
,XbeanAsmParameterNameLoader
public interface ParameterNameLoader
Determines the parameter names of Constructors or Methods.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<java.lang.String>
get(java.lang.reflect.Constructor constructor)
Gets the parameter names of the specified constructor or null if the class was compiled without debug symbols on.java.util.List<java.lang.String>
get(java.lang.reflect.Method method)
Gets the parameter names of the specified method or null if the class was compiled without debug symbols on.
-
-
-
Method Detail
-
get
java.util.List<java.lang.String> get(java.lang.reflect.Method method)
Gets the parameter names of the specified method or null if the class was compiled without debug symbols on.- Parameters:
method
- the method for which the parameter names should be retrieved- Returns:
- the parameter names or null if the class was compilesd without debug symbols on
-
get
java.util.List<java.lang.String> get(java.lang.reflect.Constructor constructor)
Gets the parameter names of the specified constructor or null if the class was compiled without debug symbols on.- Parameters:
constructor
- the constructor for which the parameters should be retrieved- Returns:
- the parameter names or null if the class was compiled without debug symbols on
-
-