public interface

ConfigurablePropertyAccessor

implements PropertyAccessor PropertyEditorRegistry TypeConverter
org.springframework.beans.ConfigurablePropertyAccessor
Known Indirect Subclasses

Class Overview

Interface that encapsulates configuration methods for a PropertyAccessor. Also extends the PropertyEditorRegistry interface, which defines methods for PropertyEditor management.

Serves as base interface for BeanWrapper.

See Also

Summary

[Expand]
Inherited Constants
From interface org.springframework.beans.PropertyAccessor
Public Methods
abstract ConversionService getConversionService()
Return the associated ConversionService, if any.
abstract boolean isExtractOldValueForEditor()
Return whether to extract the old property value when applying a property editor to a new value for a property.
abstract void setConversionService(ConversionService conversionService)
Specify a Spring 3.0 ConversionService to use for converting property values, as an alternative to JavaBeans PropertyEditors.
abstract void setExtractOldValueForEditor(boolean extractOldValueForEditor)
Set whether to extract the old property value when applying a property editor to a new value for a property.
[Expand]
Inherited Methods
From interface org.springframework.beans.PropertyAccessor
From interface org.springframework.beans.PropertyEditorRegistry
From interface org.springframework.beans.TypeConverter

Public Methods

public abstract ConversionService getConversionService ()

Also: SpringBeans

Return the associated ConversionService, if any.

public abstract boolean isExtractOldValueForEditor ()

Also: SpringBeans

Return whether to extract the old property value when applying a property editor to a new value for a property.

public abstract void setConversionService (ConversionService conversionService)

Specify a Spring 3.0 ConversionService to use for converting property values, as an alternative to JavaBeans PropertyEditors.

public abstract void setExtractOldValueForEditor (boolean extractOldValueForEditor)

Also: SpringBeans

Set whether to extract the old property value when applying a property editor to a new value for a property.