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

net.sf.juffrou.xml.internal.io.JuffrouReader Maven / Gradle / Ivy

There is a newer version: 2.1.9
Show newest version
package net.sf.juffrou.xml.internal.io;


public interface JuffrouReader {

	/**
	 * Enter into the contents of an element. If the element has attributes position in the first attribute. If not, position in the first child element.
	 * @return the name of the first attribute or first child element.
	 */
	String enterNode();

	/**
	 * Position in the next attribute or next sibling element
	 * @return the name of the attribute or element
	 */
	String next();

	void exitNode();
	
	String getNodeName();
	
	String getText();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy