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

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

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

import java.util.Map;

import org.w3c.dom.Element;


/**
 * interface Reportable 
 * 
 * @author duanyy
 * @since 1.3.0
 * 
 */
public interface Reportable {
	/**
	 * 报告输出到XML
	 * @param xml XML节点
	 */
	public void report(Element xml);
	
	/**
	 * 报告输出到JSON
	 * @param json JSON节点
	 */
	public void report(Map json);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy