*/
private static BeanInfo getBeanInfo(Object object) {
try {
return Introspector.getBeanInfo(object.getClass());
} catch (IntrospectionException ie) {
throw new PropertyResolutionException("Exception while introspecting "
+ object.getClass().getName(), ie);
}
}