979899100101102103104105106107
} public void serialize(XMLStreamWriter xmlWriter) throws XMLStreamException { StAXOutputter outputter = new StAXOutputter(xmlWriter); try { outputter.outputFragment(data); } catch (JDOMException e) { throw new XMLStreamException(e); } }
100101102103104105106107108109110
8283848586878889909192
8384858687888990919293
} public void serialize(XMLStreamWriter xmlWriter) throws XMLStreamException { StAXOutputter outputter = new StAXOutputter(xmlWriter); try { outputter.outputFragment(data); } catch (JDOMException e) { throw new XMLStreamException(e); } } }
854855856857858859860861862863864
List<Content> empty = new ArrayList<Content>(); saxout.output(doc); saxout.output(emt); saxout.output(list); saxout.output(empty); saxout.outputFragment(emt); saxout.outputFragment(list); saxout.outputFragment(empty); }
855856857858859860861862863864865
saxout.output(doc); saxout.output(emt); saxout.output(list); saxout.output(empty); saxout.outputFragment(emt); saxout.outputFragment(list); saxout.outputFragment(empty); } }
856857858859860861862863864865
saxout.output(emt); saxout.output(list); saxout.output(empty); saxout.outputFragment(emt); saxout.outputFragment(list); saxout.outputFragment(empty); } }