Interface ParameterNameLoader

All Known Implementing Classes:
AsmParameterNameLoader, XbeanAsmParameterNameLoader

public interface ParameterNameLoader
Determines the parameter names of Constructors or Methods.
  • Method Summary

    Modifier and Type
    Method
    Description
    get(Constructor constructor)
    Gets the parameter names of the specified constructor or null if the class was compiled without debug symbols on.
    get(Method method)
    Gets the parameter names of the specified method or null if the class was compiled without debug symbols on.
  • Method Details

    • 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