Example usage for org.springframework.beans BeanWrapperImpl getAutoGrowCollectionLimit

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

Introduction

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

Prototype

public int getAutoGrowCollectionLimit() 

Source Link

Document

Return the limit for array and collection auto-growing.

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})
 *///  w w w .  j a va2 s .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);
}