* @TODO: check if we have a constructor and not a method
*/
public static MemberInfo createMemberInfo(
final Class targetClass, final String withinMethodName,
final String withinMethodSignature) {
MemberInfo withinMemberInfo = null;
String[] withinMethodParameterNames = DescriptorUtil.getParameters(withinMethodSignature);
Method[] targetMethods = targetClass.getDeclaredMethods();
for (int i = 0; i < targetMethods.length; i++) {
Method method = targetMethods[i];
Class[] parameterTypes = method.getParameterTypes();