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

leap.lang.xml.XmlDocument Maven / Gradle / Ivy

package leap.lang.xml;

/**
 * A simple interface of xml document.
 */
public interface XmlDocument {

	/**
	 * Returns the location of this document.
	 */
	String location();

	/**
	 * Returns the root element.
	 */
	XmlElement rootElement();

	/**
	 * Returns a string indicates the xml content of this document.
	 */
	String toXml();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy