Example usage for org.springframework.beans AbstractNestablePropertyAccessor getAutoGrowCollectionLimit

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

Introduction

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

Prototype

public int getAutoGrowCollectionLimit() 

Source Link

Document

Return the limit for array and collection auto-growing.

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 a  v a 2s .co 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());
}