import de.odysseus.staxon.xml.SimpleXMLInputFactory;
import de.odysseus.staxon.xml.SimpleXMLOutputFactory;
public class SimpleXMLEventWriterTest {
private XMLEventReader createXmlEventReader(String xml) throws XMLStreamException {
return new SimpleXMLInputFactory().createXMLEventReader(new StringReader(xml));
}