org.springframework.context.config
Class AbstractSpecificationBeanDefinitionParser
java.lang.Object
org.springframework.context.config.AbstractSpecificationBeanDefinitionParser
- All Implemented Interfaces:
- BeanDefinitionParser
- Direct Known Subclasses:
- ComponentScanBeanDefinitionParser
public abstract class AbstractSpecificationBeanDefinitionParser
- extends Object
- implements BeanDefinitionParser
TODO SPR-7420: document
- Since:
- 3.1
- Author:
- Chris Beams
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
AbstractSpecificationBeanDefinitionParser
public AbstractSpecificationBeanDefinitionParser()
parse
public final BeanDefinition parse(Element element,
ParserContext parserContext)
- Description copied from interface:
BeanDefinitionParser
- Parse the specified
Element and register the resulting
BeanDefinition(s) with the
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 BeanDefinitionsparserContext - the object encapsulating the current state of the parsing process;
provides access to a BeanDefinitionRegistry.
- Returns:
- the primary
BeanDefinition
doParse
protected abstract FeatureSpecification doParse(Element element,
ParserContext parserContext)