257258259260261262263264265266267
*/ PropertyAccessor makeAccessor(String propertyName, Class propertyType) throws PropertyAccessException { if (dataObject) { return new DataObjectAccessor(propertyName); } try { return new FieldAccessor(objectClass, propertyName, propertyType); }