![JAR search and dependency download from the Maven repository](/logo.png)
org.noos.xing.mydoggy.plaf.persistence.xml.XMLWriter Maven / Gradle / Ivy
The newest version!
package org.noos.xing.mydoggy.plaf.persistence.xml;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.AttributesImpl;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.util.Stack;
public class XMLWriter {
protected final static Object SEEN_NOTHING = new Object();
protected final static Object SEEN_ELEMENT = new Object();
protected final static Object SEEN_DATA = new Object();
protected int elementLevel = 0;
protected Writer output;
protected final Attributes EMPTY_ATTS = new AttributesImpl();
protected Object state = SEEN_NOTHING;
protected Stack
© 2015 - 2025 Weber Informatics LLC | Privacy Policy