* <code>DcTitleElement</code> , See {@odf.element dc:title}.
*
* @param title set the specified document title. NULL will remove the element from the meta.xml.
*/
public void setTitle(String title) {
DcTitleElement titleEle = OdfElement.findFirstChildNode(
DcTitleElement.class, mOfficeMetaElement);
if (title == null) {
if (titleEle != null) {
mOfficeMetaElement.removeChild(titleEle);
}
} else {
if (titleEle == null) {
titleEle = mOfficeMetaElement.newDcTitleElement();
}
titleEle.setTextContent(title);
}
}