https://issues.apache.org/bugzilla/show_bug.cgi?id=54099
gabe pisce <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|INVALID |--- --- Comment #6 from gabe pisce <[email protected]> --- Thanks for the partial fix. However, this only unveiled some other mising classes which allow the same function (to merge cells in a docx). 1) XWPFTableCell cell = ...; CTTc ctTc = cell.getCTTc(); CTTcPr tcPr = ctTc.addNewTcPr(); CTHMerge hMerge = tcPr.addNewHMerge(); hMerge.setVal(STMerge.RESTART); => org.openxmlformats.schemas.wordprocessingml.x2006.main.STMerge is missing 2) XWPFTableCell cell = ...; CTTc ctTc = cell.getCTTc(); CTTcPr tcPr = ctTc.addNewTcPr(); CTVMerge vMerge = tcPr.addNewVMerge(); => org.openxmlformats.schemas.wordprocessingml.x2006.main.CTVMerge is missing May I suggest to include everything aroung "Merge"? -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
