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

Method Detail

get

List<String> get(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

List<String> get(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


Copyright © 2005-2009 The Apache Software Foundation. All Rights Reserved.