Document doc = XmlSerializeTool.createDocument();
StringElement stringElement = new StringElement(ENTRY_NAME);
stringElement.setContent(TEST_CONTENT);
Element node = stringElement.toXml(doc);
doc.appendChild(node);
XmlSerializeTool.writeFile(doc, output);
}