The Spring Framework

Uses of Interface
org.springframework.beans.factory.xml.BeanDefinitionParser

Packages that use BeanDefinitionParser
org.springframework.aop.config Support package for declarative AOP configuration, with XML schema being the primary configuration format. 
org.springframework.beans.factory.xml Contains an abstract XML-based BeanFactory implementation, including a standard "spring-beans" DTD. 
org.springframework.ejb.config Support package for EJB/J2EE-related configuration, with XML schema being the primary configuration format. 
org.springframework.scripting.config Support package for Spring's dynamic language machinery, with XML schema being the primary configuration format. 
org.springframework.transaction.config Support package for declarative transaction configuration, with XML schema being the primary configuration format. 
 

Uses of BeanDefinitionParser in org.springframework.aop.config
 

Classes in org.springframework.aop.config that implement BeanDefinitionParser
(package private)  class AspectJAutoProxyBeanDefinitionParser
          BeanDefinitionParser implementation that for the 'aspectj-autoproxy' tag that enables the automatic application of @AspectJ-style aspects found in the BeanFactory.
(package private)  class ConfigBeanDefinitionParser
          BeanDefinitionParser for the <aop:config> tag.
(package private)  class SpringConfiguredBeanDefinitionParser
          BeanDefinitionParser responsible for parsing the <aop:spring-configured/> tag.
 

Uses of BeanDefinitionParser in org.springframework.beans.factory.xml
 

Classes in org.springframework.beans.factory.xml that implement BeanDefinitionParser
 class AbstractBeanDefinitionParser
          Abstract BeanDefinitionParser implementation providing a number of convenience methods and a template method that subclasses must override to provide the actual parsing logic.
 class AbstractSimpleBeanDefinitionParser
          Convenience base class for when there exists a one-to-one mapping between attribute names on the element that is to be parsed and the property names on the Class being configured.
 class AbstractSingleBeanDefinitionParser
          Base class for those BeanDefinitionParser implementations that need to parse and define just a single BeanDefinition.
 

Methods in org.springframework.beans.factory.xml that return BeanDefinitionParser
protected  BeanDefinitionParser NamespaceHandlerSupport.findParserForElement(Element element)
          Locates the BeanDefinitionParser from the register implementations using the local name of the supplied Element.
 

Methods in org.springframework.beans.factory.xml with parameters of type BeanDefinitionParser
protected  void NamespaceHandlerSupport.registerBeanDefinitionParser(String elementName, BeanDefinitionParser parser)
          Subclasses can call this to register the supplied BeanDefinitionParser to handle the specified element.
 

Uses of BeanDefinitionParser in org.springframework.ejb.config
 

Classes in org.springframework.ejb.config that implement BeanDefinitionParser
(package private)  class AbstractJndiLocatedBeanDefinitionParser
           
(package private)  class JndiLookupBeanDefinitionParser
          Simple BeanDefinitionParser implementation that translates jndi-lookup tag into JndiObjectFactoryBean definitions.
(package private)  class LocalStatelessSessionBeanDefinitionParser
          BeanDefinitionParser implementation for parsing 'local-slsb' tags and creating LocalStatelessSessionProxyFactoryBean definitions.
(package private)  class RemoteStatelessSessionBeanDefinitionParser
           
 

Uses of BeanDefinitionParser in org.springframework.scripting.config
 

Classes in org.springframework.scripting.config that implement BeanDefinitionParser
(package private)  class ScriptBeanDefinitionParser
          BeanDefinitionParser implementation for the '<lang:groovy/>', '<lang:jruby/>' and '<lang:bsh/>' tags.
 

Uses of BeanDefinitionParser in org.springframework.transaction.config
 

Classes in org.springframework.transaction.config that implement BeanDefinitionParser
(package private)  class AnnotationDrivenBeanDefinitionParser
          BeanDefinitionParser implementation that allows users to easily configure all the infrastructure beans required to enable annotation-driven transaction demarcation.
(package private)  class TxAdviceBeanDefinitionParser
           
 


The Spring Framework

Copyright © 2002-2006 The Spring Framework.