Example usage for org.springframework.beans AbstractPropertyAccessor subclass-usage

List of usage examples for org.springframework.beans AbstractPropertyAccessor subclass-usage

Introduction

In this page you can find the example usage for org.springframework.beans AbstractPropertyAccessor subclass-usage.

Usage

From source file org.jdal.ui.bind.DirectFieldAccessor.java

/**
 * {@link PropertyAccessor} implementation that directly accesses instance fields.
 * Allows for direct binding to fields instead of going through JavaBean setters.
 *
 * <p>This implementation just supports fields in the actual target object.
 * It is not able to traverse nested fields.

From source file net.sf.morph.beans.MorphBeanWrapper.java

/**
 * Provides an implementation of Spring's
 * {@link org.springframework.beans.BeanWrapper} interface but leverages Morph's
 * underlying reflector infrastructure.  For example, the properties of a Map
 * or those of an HttpRequest could be exposed by this wrapper, whereas
 * the {@link org.springframework.beans.BeanWrapperImpl} is limited to using

From source file net.sf.morph2.beans.MorphBeanWrapper.java

/**
 * Provides an implementation of Spring's
 * {@link org.springframework.beans.BeanWrapper} interface but leverages Morph's
 * underlying reflector infrastructure.  For example, the properties of a Map
 * or those of an HttpRequest could be exposed by this wrapper, whereas
 * the {@link org.springframework.beans.BeanWrapperImpl} is limited to using

From source file net.yasion.common.core.bean.wrapper.impl.ExtendedBeanWrapperImpl.java

/**
 * Default {@link BeanWrapper} implementation that should be sufficient for all typical use cases. Caches introspection results for efficiency.
 *
 * <p>
 * Note: Auto-registers default property editors from the {@code org.springframework.beans.propertyeditors} package, which apply in addition to the JDK's standard PropertyEditors. Applications can call the {@link #registerCustomEditor(Class, java.beans.PropertyEditor)} method to
 * register an editor for a particular instance (i.e. they are not shared across the application). See the base class {@link PropertyEditorRegistrySupport} for details.

From source file org.springframework.beans.AbstractNestablePropertyAccessor.java

/**
 * A basic {@link ConfigurablePropertyAccessor} that provides the necessary
 * infrastructure for all typical use cases.
 *
 * <p>This accessor will convert collection and array values to the corresponding
 * target collections or arrays, if necessary. Custom property editors that deal

From source file org.springframework.beans.BeanWrapperImpl.java

/**
 * Default {@link BeanWrapper} implementation that should be sufficient
 * for all typical use cases. Caches introspection results for efficiency.
 *
 * <p>Note: Auto-registers default property editors from the
 * {@code org.springframework.beans.propertyeditors} package, which apply

From source file org.tinygroup.weblayer.webcontext.parser.util.BeanWrapperImpl.java

/**
 * Default {@link BeanWrapper} implementation that should be sufficient
 * for all typical use cases. Caches introspection results for efficiency.
 *
 * <p>Note: Auto-registers default property editors from the
 * <code>org.springframework.beans.propertyeditors</code> package, which apply