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
Modifier and TypeMethodDescriptionget
(Constructor constructor) Gets the parameter names of the specified constructor or null if the class was compiled without debug symbols on.Gets the parameter names of the specified method or null if the class was compiled without debug symbols on.
-
Method Details
-
get
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
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
-