Example usage for org.springframework.beans AbstractNestablePropertyAccessor isExtractOldValueForEditor

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

Introduction

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

Prototype

@Override
    public boolean isExtractOldValueForEditor() 

Source Link

Usage

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

/**
 * Create a new accessor for the given object,
 * registering a nested path that the object is in.
 * @param object object wrapped by this accessor
 * @param nestedPath the nested path of the object
 * @param parent the containing accessor (must not be {@code null})
 */// w ww  .j  a  v  a2s . c  o m
protected AbstractNestablePropertyAccessor(Object object, String nestedPath,
        AbstractNestablePropertyAccessor parent) {
    setWrappedInstance(object, nestedPath, parent.getWrappedInstance());
    setExtractOldValueForEditor(parent.isExtractOldValueForEditor());
    setAutoGrowNestedPaths(parent.isAutoGrowNestedPaths());
    setAutoGrowCollectionLimit(parent.getAutoGrowCollectionLimit());
    setConversionService(parent.getConversionService());
}