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

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

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

import net.sf.juffrou.xml.internal.NodeType;

public interface JuffrouWriter {

	void startNode(String nodeName, NodeType nodeType);
	void endNode();
	void setAttribute(String attributeName, String value);
	void write(String value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy