Example usage for org.springframework.beans AbstractNestablePropertyAccessor getConversionService

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

Introduction

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

Prototype

@Nullable
public ConversionService getConversionService() 

Source Link

Document

Return the associated ConversionService, if any.

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})
 */// ww  w. j  ava 2  s.  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());
}