Uses of Interface
org.springframework.core.AttributeAccessor

Packages that use AttributeAccessor
org.springframework.beans This package contains interfaces and classes for manipulating Java beans. 
org.springframework.beans.factory.annotation Support package for annotation-driven bean configuration. 
org.springframework.beans.factory.config SPI interfaces and configuration-related convenience classes for bean factories. 
org.springframework.beans.factory.support Classes supporting the org.springframework.beans.factory package. 
org.springframework.context.annotation Annotation support for context configuration, including classpath scanning for autowire candidates. 
org.springframework.core Provides basic classes for exception handling and version detection, and other core helpers that are not specific to any part of the framework. 
org.springframework.test.context This package contains the Spring TestContext Framework which provides annotation-driven unit and integration testing support that is agnostic of the actual testing framework in use. 
 

Uses of AttributeAccessor in org.springframework.beans
 

Classes in org.springframework.beans that implement AttributeAccessor
 class BeanMetadataAttributeAccessor
          Extension of AttributeAccessorSupport, holding attributes as BeanMetadataAttribute objects in order to keep track of the definition source.
 class PropertyValue
          Object to hold information and value for an individual bean property.
 

Uses of AttributeAccessor in org.springframework.beans.factory.annotation
 

Subinterfaces of AttributeAccessor in org.springframework.beans.factory.annotation
 interface AnnotatedBeanDefinition
          Extended BeanDefinition interface that exposes AnnotationMetadata about its bean class - without requiring the class to be loaded yet.
 

Classes in org.springframework.beans.factory.annotation that implement AttributeAccessor
 class AnnotatedGenericBeanDefinition
          Extension of the GenericBeanDefinition class, adding support for annotation metadata exposed through the AnnotatedBeanDefinition interface.
 

Uses of AttributeAccessor in org.springframework.beans.factory.config
 

Subinterfaces of AttributeAccessor in org.springframework.beans.factory.config
 interface BeanDefinition
          A BeanDefinition describes a bean instance, which has property values, constructor argument values, and further information supplied by concrete implementations.
 

Uses of AttributeAccessor in org.springframework.beans.factory.support
 

Classes in org.springframework.beans.factory.support that implement AttributeAccessor
 class AbstractBeanDefinition
          Base class for concrete, full-fledged BeanDefinition classes, factoring out common properties of RootBeanDefinition and ChildBeanDefinition.
 class AutowireCandidateQualifier
          Qualifier for resolving autowire candidates.
 class ChildBeanDefinition
          Bean definition for beans which inherit settings from their parent.
 class GenericBeanDefinition
          GenericBeanDefinition is a one-stop shop for standard bean definition purposes.
 class RootBeanDefinition
          A root bean definition represents the merged bean definition that backs a specific bean in a Spring BeanFactory at runtime.
 

Uses of AttributeAccessor in org.springframework.context.annotation
 

Classes in org.springframework.context.annotation that implement AttributeAccessor
 class ScannedGenericBeanDefinition
          Extension of the GenericBeanDefinition class, based on an ASM ClassReader, with support for annotation metadata exposed through the AnnotatedBeanDefinition interface.
 

Uses of AttributeAccessor in org.springframework.core
 

Classes in org.springframework.core that implement AttributeAccessor
 class AttributeAccessorSupport
          Support class for AttributeAccessors, providing a base implementation of all methods.
 

Methods in org.springframework.core with parameters of type AttributeAccessor
protected  void AttributeAccessorSupport.copyAttributesFrom(AttributeAccessor source)
          Copy the attributes from the supplied AttributeAccessor to this accessor.
 

Uses of AttributeAccessor in org.springframework.test.context
 

Classes in org.springframework.test.context that implement AttributeAccessor
 class TestContext
          TestContext encapsulates the context in which a test is executed, agnostic of the actual testing framework in use.
 



Copyright © 2002-2008 The Spring Framework.