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

com.anysoft.util.XmlSerializer Maven / Gradle / Ivy

There is a newer version: 1.6.17
Show newest version
package com.anysoft.util;

import org.w3c.dom.Element;

/**
 * XML序列化接口
 * @author hmyyduan
 *
 */
public interface XmlSerializer {
	/**
	 * 写出到XML节点
	 * @param e element
	 */
	public void toXML(Element e);
	/**
	 * 从XML节点读入
	 * @param e element
	 */
	public void fromXML(Element e);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy