The Spring Framework

Uses of Class
org.springframework.beans.factory.xml.ParserContext

Packages that use ParserContext
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.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 ParserContext in org.springframework.aop.config
 

Methods in org.springframework.aop.config with parameters of type ParserContext
 BeanDefinitionHolder ScopedProxyBeanDefinitionDecorator.decorate(Node node, BeanDefinitionHolder definition, ParserContext parserContext)
           
 BeanDefinitionHolder AbstractInterceptorDrivenBeanDefinitionDecorator.decorate(Node node, BeanDefinitionHolder definitionHolder, ParserContext parserContext)
           
 BeanDefinition ConfigBeanDefinitionParser.parse(Element element, ParserContext parserContext)
           
 BeanDefinition SpringConfiguredBeanDefinitionParser.parse(Element element, ParserContext parserContext)
           
 BeanDefinition AspectJAutoProxyBeanDefinitionParser.parse(Element element, ParserContext parserContext)
           
static void AopNamespaceUtils.registerAspectJAutoProxyCreatorIfNecessary(ParserContext parserContext, Object sourceElement)
           
static void AopNamespaceUtils.registerAtAspectJAutoProxyCreatorIfNecessary(ParserContext parserContext, Object sourceElement)
           
static void AopNamespaceUtils.registerAutoProxyCreatorIfNecessary(ParserContext parserContext, Object sourceElement)
           
 

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

Methods in org.springframework.beans.factory.xml with parameters of type ParserContext
 BeanDefinitionHolder NamespaceHandler.decorate(Node source, BeanDefinitionHolder definition, ParserContext parserContext)
          Parse the specified Node and decorate the supplied BeanDefinitionHolder, returning the decorated definition.
 BeanDefinitionHolder SimplePropertyNamespaceHandler.decorate(Node node, BeanDefinitionHolder definition, ParserContext parserContext)
           
 BeanDefinitionHolder NamespaceHandlerSupport.decorate(Node node, BeanDefinitionHolder definition, ParserContext parserContext)
          Decorates the supplied Node by delegating to the BeanDefinitionDecorator that is registered to handle that Node.
 BeanDefinitionHolder BeanDefinitionDecorator.decorate(Node node, BeanDefinitionHolder definition, ParserContext parserContext)
          Parse the specified Node (either an element or an attribute) and decorate the supplied BeanDefinition, returning the decorated definition.
protected  void AbstractSingleBeanDefinitionParser.doParse(Element element, ParserContext parserContext, BeanDefinitionBuilder builder)
          Parse the supplied Element and populate the supplied BeanDefinitionBuilder as required.
 BeanDefinition AbstractBeanDefinitionParser.parse(Element element, ParserContext parserContext)
           
 BeanDefinition NamespaceHandler.parse(Element element, ParserContext parserContext)
          Parse the specified Element and register any resulting BeanDefinitions with the BeanDefinitionRegistry that is embedded in the supplied ParserContext.
 BeanDefinition SimplePropertyNamespaceHandler.parse(Element element, ParserContext parserContext)
           
 BeanDefinition NamespaceHandlerSupport.parse(Element element, ParserContext parserContext)
          Parses the supplied Element by delegating to the BeanDefinitionParser that is registered for that Element.
 BeanDefinition BeanDefinitionParser.parse(Element element, ParserContext parserContext)
          Parse the specified Element and register the resulting BeanDefinition(s) with the getRegistry() BeanDefinitionRegistry} embedded in the supplied ParserContext.
protected abstract  AbstractBeanDefinition AbstractBeanDefinitionParser.parseInternal(Element element, ParserContext parserContext)
          Central template method to actually parse the supplied Element into one or more BeanDefinitions.
protected  AbstractBeanDefinition AbstractSingleBeanDefinitionParser.parseInternal(Element element, ParserContext parserContext)
          Creates a BeanDefinitionBuilder instance for the bean Class and passes it to the AbstractSingleBeanDefinitionParser.doParse(org.w3c.dom.Element, org.springframework.beans.factory.xml.ParserContext, org.springframework.beans.factory.support.BeanDefinitionBuilder) strategy method.
protected  String AbstractBeanDefinitionParser.resolveId(Element element, AbstractBeanDefinition definition, ParserContext parserContext)
          Resolve the ID for the supplied BeanDefinition.
 

Uses of ParserContext in org.springframework.scripting.config
 

Methods in org.springframework.scripting.config with parameters of type ParserContext
protected  AbstractBeanDefinition ScriptBeanDefinitionParser.parseInternal(Element element, ParserContext parserContext)
          Parses the dynamic object element and returns the resulting bean definition.
 

Uses of ParserContext in org.springframework.transaction.config
 

Methods in org.springframework.transaction.config with parameters of type ParserContext
protected  void TxAdviceBeanDefinitionParser.doParse(Element element, ParserContext parserContext, BeanDefinitionBuilder builder)
           
protected  AbstractBeanDefinition AnnotationDrivenBeanDefinitionParser.parseInternal(Element element, ParserContext parserContext)
          Parses the '<tx:annotation-driven/>>' tag.
 


The Spring Framework

Copyright © 2002-2006 The Spring Framework.