}
return joinPoint;
}
// Find the constructor
ConstructorJoinpoint joinPoint = findConstructor(trace, info, metaData, beanMetaData);
ConstructorInfo cinfo = joinPoint.getConstructorInfo();
// Set the parameters
if (cinfo != null)
{
TypeInfo[] pinfos = cinfo.getParameterTypes();
Object[] params = getParameters(trace, cl, pinfos, metaData.getParameters());
joinPoint.setArguments(params);
}
return joinPoint;
}
// Default constructor