*
* @param title
* - the title of this text box
*/
public void setTitle(String title) {
SvgTitleElement titleElement = OdfElement.findFirstChildNode(SvgTitleElement.class, mElement);
if (titleElement == null)
titleElement = mElement.newSvgTitleElement();
titleElement.setTextContent(title);
}