* null-values or <tt>null</tt> should be returned
*/
public ClassPropertyAccessStrategy(final ValueModel domainObjectHolder, boolean fieldAccessEnabled,
boolean strictNullValueHandling) {
super(domainObjectHolder);
propertyAccessor = new DefaultMemberPropertyAccessor(domainObjectHolder.getValue().getClass(),
domainObjectHolder.getValue(), fieldAccessEnabled, strictNullValueHandling);
}