throw new IllegalArgumentException("Null bean info");
if (name == null)
throw new IllegalArgumentException("Null name");
String[] paramTypes = getParameterTypes(trace, parameters);
MethodInfo minfo = findMethodInfo(info.getClassInfo(), name, paramTypes, isStatic, isPublic);
JoinpointFactory jpf = info.getJoinpointFactory();
MethodJoinpoint joinPoint = jpf.getMethodJoinpoint(minfo);
// Set the parameters
if (minfo != null)
{
TypeInfo[] pinfos = minfo.getParameterTypes();
Object[] params = handleParameters(trace, cl, pinfos, parameters, unget);
joinPoint.setArguments(params);
}
return joinPoint;