long str = System.currentTimeMillis();
currentMonitor().invoking(null, null, method, component);
method.invoke(component);
currentMonitor().invoked(null, null, method, component, System.currentTimeMillis() - str);
} catch (IllegalAccessException e) {
throw new PicoLifecycleException(method, component, e);
} catch (InvocationTargetException e) {
throw new PicoLifecycleException(method, component, e);
}
}
}
}