PropertyInfo propertyInfo = beanInfo.getProperty(name);
// Look for a property MetaMapper
MetaMapper metaMapper = property.getTransientAttachment(MetaMapper.class);
if(metaMapper != null)
{
return metaMapper.unwrapMetaValue(value);
}
return metaValueFactory.unwrap(value, propertyInfo.getType());
}
protected void setValue(BeanInfo beanInfo, PropertyInfo propertyInfo, Object object, Object unwrapValue)