* @param odfDocument the document the XML files belongs to
* @param packagePath the internal package path to the XML file
*/
public OdfMetaDom(OdfSchemaDocument odfDocument, String packagePath) {
super(odfDocument, packagePath);
OfficeDocumentMetaElement rootElement = this.getRootElement();
if(rootElement == null){
rootElement = new OfficeDocumentMetaElement(this);
this.appendChild(rootElement);
OfficeMetaElement officeMetaElement = new OfficeMetaElement(this);
rootElement.appendChild(officeMetaElement);
}
}