org.springframework.scheduling.config
Class ExecutorBeanDefinitionParser

java.lang.Object
  extended by org.springframework.beans.factory.xml.AbstractBeanDefinitionParser
      extended by org.springframework.beans.factory.xml.AbstractSingleBeanDefinitionParser
          extended by org.springframework.scheduling.config.ExecutorBeanDefinitionParser
All Implemented Interfaces:
BeanDefinitionParser

public class ExecutorBeanDefinitionParser
extends AbstractSingleBeanDefinitionParser

Parser for the 'executor' element of the 'task' namespace.

Since:
3.0
Author:
Mark Fisher, Juergen Hoeller

Field Summary
 
Fields inherited from class org.springframework.beans.factory.xml.AbstractBeanDefinitionParser
ID_ATTRIBUTE, NAME_ATTRIBUTE
 
Constructor Summary
ExecutorBeanDefinitionParser()
           
 
Method Summary
protected  void doParse(Element element, ParserContext parserContext, BeanDefinitionBuilder builder)
          Parse the supplied Element and populate the supplied BeanDefinitionBuilder as required.
protected  String getBeanClassName(Element element)
          Determine the bean class name corresponding to the supplied Element.
 
Methods inherited from class org.springframework.beans.factory.xml.AbstractSingleBeanDefinitionParser
doParse, getBeanClass, getParentName, parseInternal
 
Methods inherited from class org.springframework.beans.factory.xml.AbstractBeanDefinitionParser
parse, postProcessComponentDefinition, registerBeanDefinition, resolveId, shouldFireEvents, shouldGenerateId, shouldGenerateIdAsFallback
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ExecutorBeanDefinitionParser

public ExecutorBeanDefinitionParser()
Method Detail

getBeanClassName

protected String getBeanClassName(Element element)
Description copied from class: AbstractSingleBeanDefinitionParser
Determine the bean class name corresponding to the supplied Element.

Overrides:
getBeanClassName in class AbstractSingleBeanDefinitionParser
Parameters:
element - the Element that is being parsed
Returns:
the class name of the bean that is being defined via parsing the supplied Element, or null if none
See Also:
AbstractSingleBeanDefinitionParser.getBeanClass(org.w3c.dom.Element)

doParse

protected void doParse(Element element,
                       ParserContext parserContext,
                       BeanDefinitionBuilder builder)
Description copied from class: AbstractSingleBeanDefinitionParser
Parse the supplied Element and populate the supplied BeanDefinitionBuilder as required.

The default implementation delegates to the doParse version without ParserContext argument.

Overrides:
doParse in class AbstractSingleBeanDefinitionParser
Parameters:
element - the XML element being parsed
parserContext - the object encapsulating the current state of the parsing process
builder - used to define the BeanDefinition
See Also:
AbstractSingleBeanDefinitionParser.doParse(Element, BeanDefinitionBuilder)