I need help adding table objects to the main document. Looking at the document.xml from a Word generated file it looks like tables are, typically, inserted at the same level as P objects. So, I tried calling the MainDocumentPart.addObject method passing in an instance of Tbl but that merely generates an "UNEXPECTED: org.docx4j.wml.Tbl" in the log. It turns out, the traverseMainDocumentRecursive method allows only P and R objects. As near as I can tell, the ...