Example usage for org.springframework.beans AbstractNestablePropertyAccessor isAutoGrowNestedPaths

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

Introduction

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

Prototype

@Override
    public boolean isAutoGrowNestedPaths() 

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})
 *///from  w  ww . j  ava2s .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());
}