package io.gitlab.jfronny.commons.serialize.xml.wrapper; import io.gitlab.jfronny.commons.serialize.SerializeWriter; import java.io.IOException; import java.io.Writer; public class XmlWriter extends SerializeWriter { public XmlWriter(Writer target) { throw new UnsupportedOperationException("Not yet implemented"); } @Override public XmlWriter beginArray() throws IOException { throw new UnsupportedOperationException("Not yet implemented"); } @Override public XmlWriter endArray() throws IOException { throw new UnsupportedOperationException("Not yet implemented"); } @Override public XmlWriter beginObject() throws IOException { throw new UnsupportedOperationException("Not yet implemented"); } @Override public XmlWriter endObject() throws IOException { throw new UnsupportedOperationException("Not yet implemented"); } @Override public XmlWriter comment(String comment) throws IOException { throw new UnsupportedOperationException("Not yet implemented"); } @Override public XmlWriter name(String name) throws IOException { throw new UnsupportedOperationException("Not yet implemented"); } @Override public XmlWriter value(String value) throws IOException { throw new UnsupportedOperationException("Not yet implemented"); } @Override public XmlWriter literalValue(String value) throws IOException { throw new UnsupportedOperationException("Not yet implemented"); } @Override public void flush() throws IOException { throw new UnsupportedOperationException("Not yet implemented"); } @Override public void close() throws IOException { throw new UnsupportedOperationException("Not yet implemented"); } }