From: Yegor Kozlov Date: Thu, 8 Nov 2012 19:52:20 +0000 (+0000) Subject: Bugzilla 54099 - Ensure that CTHMerge and CTTcBorders go to poi-ooxml-schemas jar X-Git-Tag: 3.10-beta1~96 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3a1268af7f5cc9f45c6ed0b4d8dfb8ba563a07bb;p=poi.git Bugzilla 54099 - Ensure that CTHMerge and CTTcBorders go to poi-ooxml-schemas jar git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1407242 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/documentation/content/xdocs/status.xml b/src/documentation/content/xdocs/status.xml index 50f9edc544..c393127453 100644 --- a/src/documentation/content/xdocs/status.xml +++ b/src/documentation/content/xdocs/status.xml @@ -34,6 +34,7 @@ + 54099 - Ensure that CTHMerge and CTTcBorders go to poi-ooxml-schemas jar 54111 - Fixed extracting text from table cells in HSLF 52583 - add support for drop-down lists in doc to html convertion 52863 - add workaround for files with broken CHP SPRMs diff --git a/src/ooxml/testcases/org/apache/poi/xwpf/usermodel/TestXWPFTableCell.java b/src/ooxml/testcases/org/apache/poi/xwpf/usermodel/TestXWPFTableCell.java index cf28ffd0c2..644b9e61cf 100644 --- a/src/ooxml/testcases/org/apache/poi/xwpf/usermodel/TestXWPFTableCell.java +++ b/src/ooxml/testcases/org/apache/poi/xwpf/usermodel/TestXWPFTableCell.java @@ -22,11 +22,7 @@ package org.apache.poi.xwpf.usermodel; import junit.framework.TestCase; import org.apache.poi.xwpf.usermodel.XWPFTableCell.XWPFVertAlign; -import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTShd; -import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTbl; -import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTVerticalJc; -import org.openxmlformats.schemas.wordprocessingml.x2006.main.STShd; -import org.openxmlformats.schemas.wordprocessingml.x2006.main.STVerticalJc; +import org.openxmlformats.schemas.wordprocessingml.x2006.main.*; public class TestXWPFTableCell extends TestCase { @@ -79,9 +75,20 @@ public class TestXWPFTableCell extends TestCase { assertEquals("F0000F", clr); } - @Override - protected void tearDown() throws Exception { - super.tearDown(); - } + /** + * ensure that CTHMerge & CTTcBorders go in poi-ooxml.jar + */ + public void test54099(){ + XWPFDocument doc = new XWPFDocument(); + CTTbl ctTable = CTTbl.Factory.newInstance(); + XWPFTable table = new XWPFTable(ctTable, doc); + XWPFTableRow tr = table.getRow(0); + XWPFTableCell cell = tr.getCell(0); + + CTTc ctTc = cell.getCTTc(); + CTTcPr tcPr = ctTc.addNewTcPr(); + CTHMerge hMerge = tcPr.addNewHMerge(); + CTTcBorders tblBorders = tcPr.addNewTcBorders(); + } }