The Spring Framework

org.springframework.aop.config
Class ConfigBeanDefinitionParser

java.lang.Object
  extended by org.springframework.aop.config.ConfigBeanDefinitionParser
All Implemented Interfaces:
BeanDefinitionParser

 class ConfigBeanDefinitionParser
extends Object
implements BeanDefinitionParser

BeanDefinitionParser for the <aop:config> tag.

Since:
2.0
Author:
Rob Harrop, Adrian Colyer, Rod Johnson, Juergen Hoeller, Mark Fisher

Constructor Summary
ConfigBeanDefinitionParser()
           
 
Method Summary
protected  AbstractBeanDefinition createPointcutDefinition(String expression)
          Creates a BeanDefinition for the AspectJExpressionPointcut class using the supplied pointcut expression.
 BeanDefinition parse(Element element, ParserContext parserContext)
          Parse the specified Element and register the resulting BeanDefinition(s) with the ParserContext.getRegistry() BeanDefinitionRegistry} embedded in the supplied ParserContext.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ConfigBeanDefinitionParser

ConfigBeanDefinitionParser()
Method Detail

parse

public BeanDefinition parse(Element element,
                            ParserContext parserContext)
Description copied from interface: BeanDefinitionParser
Parse the specified Element and register the resulting BeanDefinition(s) with the ParserContext.getRegistry() BeanDefinitionRegistry} embedded in the supplied ParserContext.

Implementations must return the primary BeanDefinition that results from the parse if they will ever be used in a nested fashion (for example as an inner tag in a <property/> tag). Implementations may return null if they will not be used in a nested fashion.

Specified by:
parse in interface BeanDefinitionParser
Parameters:
element - the element that is to be parsed into one or more BeanDefinitions
parserContext - the object encapsulating the current state of the parsing process; provides access to a BeanDefinitionRegistry
Returns:
the primary BeanDefinition

createPointcutDefinition

protected AbstractBeanDefinition createPointcutDefinition(String expression)
Creates a BeanDefinition for the AspectJExpressionPointcut class using the supplied pointcut expression.


The Spring Framework

Copyright © 2002-2006 The Spring Framework.