* @return the result of the invocation
* @throws Throwable for any error
*/
public static Object invoke(Object object, JoinpointFactory jpf, String name, String[] paramTypes, Object[] params) throws Throwable
{
MethodJoinpoint joinpoint = getMethodJoinpoint(object, jpf, name, paramTypes, params);
return joinpoint.dispatch();
}