Created
December 29, 2014 13:52
-
-
Save ivanursul/2f21efd721cab7b7419f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.springframework.beans.factory.xml; | |
| import org.w3c.dom.Element; | |
| import org.w3c.dom.Node; | |
| import org.springframework.beans.factory.config.BeanDefinition; | |
| import org.springframework.beans.factory.config.BeanDefinitionHolder; | |
| public interface NamespaceHandler { | |
| void init(); | |
| BeanDefinition parse(Element element, ParserContext parserContext); | |
| BeanDefinitionHolder decorate(Node source, BeanDefinitionHolder definition, ParserContext parserContext); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment