com.anysoft.util.XMLConfigurable Maven / Gradle / Ivy
package com.anysoft.util;
import org.w3c.dom.Element;
/**
* Can read config from a XML document.
* @author duanyy
*
* @version 1.6.4.27 [20160125 duanyy]
* - 根据sonar建议优化代码
*/
public interface XMLConfigurable {
/**
* to read config from xml.
* @param e xml document
* @param p variables
*/
public void configure(Element e,Properties p);
}