Example usage for org.springframework.beans BeanWrapperImpl isExtractOldValueForEditor

List of usage examples for org.springframework.beans BeanWrapperImpl isExtractOldValueForEditor

Introduction

In this page you can find the example usage for org.springframework.beans BeanWrapperImpl isExtractOldValueForEditor.

Prototype

@Override
    public boolean isExtractOldValueForEditor() 

Source Link

Usage

From source file:org.springframework.beans.BeanWrapperImpl.java

/**
 * Create new BeanWrapperImpl for the given object,
 * registering a nested path that the object is in.
 * @param object object wrapped by this BeanWrapper
 * @param nestedPath the nested path of the object
 * @param superBw the containing BeanWrapper (must not be {@code null})
 *//*from   w w w .j  ava 2s  .  c  om*/
private BeanWrapperImpl(Object object, String nestedPath, BeanWrapperImpl superBw) {
    setWrappedInstance(object, nestedPath, superBw.getWrappedInstance());
    setExtractOldValueForEditor(superBw.isExtractOldValueForEditor());
    setAutoGrowNestedPaths(superBw.isAutoGrowNestedPaths());
    setAutoGrowCollectionLimit(superBw.getAutoGrowCollectionLimit());
    setConversionService(superBw.getConversionService());
    setSecurityContext(superBw.acc);
}