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

org.eweb4j.util.xml.XMLReader Maven / Gradle / Ivy

The newest version!
package org.eweb4j.util.xml;

import java.util.List;

public interface XMLReader {
	 List read() throws Exception;

	 T readOne() throws Exception;
	
	String toXml() throws Exception;

	public void setClass(String key, Class clazz);
	
	public void setClass(Class clazz);
	
	public void setBeanName(String beanName);
	
	public void setRootElementName(String name);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy