net.sf.juffrou.xml.internal.io.JuffrouWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of juffrou-xml Show documentation
Show all versions of juffrou-xml Show documentation
Juffrou XML is simplified marshaling for java beans into XML and back.
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);
}