All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sagacity.sqltoy.callback.XMLCallbackHandler Maven / Gradle / Ivy

There is a newer version: 5.6.31.jre8
Show newest version
/**
 * 
 */
package org.sagacity.sqltoy.callback;

import org.w3c.dom.Document;
import org.w3c.dom.Element;

/**
 * @project sagacity-sqltoy
 * @description xml编辑反调接口
 * @author zhongxuchen
 * @version v1.0,Date:2009-12-30
 */
@FunctionalInterface
public interface XMLCallbackHandler {
	/**
	 * @todo 处理xml document对象,用于sqltoy xml文件解析
	 * @param doc
	 * @param root
	 * @return
	 */
	public Object process(Document doc, Element root) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy