Java 类org.springframework.beans.factory.xml.NamespaceHandlerSupport 实例源码

项目:dwr    文件:ConfigurationParser.java   
/**
 * Configures the namespace handler for this context.
 *
 * @param handler a non null instance
 */
public ConfigurationParser(NamespaceHandlerSupport handler) {
    Assert.notNull(handler);
    this.handler = handler;
}