private JDOMDataSource(Element data) {
this.data = data;
}
public void serialize(XMLStreamWriter xmlWriter) throws XMLStreamException {
StAXOutputter outputter = new StAXOutputter(xmlWriter);
try {
outputter.outputFragment(data);
} catch (JDOMException e) {
throw new XMLStreamException(e);
}
}