// handle <w:trHeight/>
JAXBElement<CTHeight> trHeight = (trPr != null ?
(JAXBElement<CTHeight>)getElement(trPr.getCnfStyleOrDivIdOrGridBefore(), "trHeight") :
null);
if (trHeight != null) {
properties.add(new TrHeight(trHeight.getValue()));
}
// handle <w:cantSplit/>
if (trPr != null) {
JAXBElement<?> cantSplit = XmlUtils.getListItemByQName(trPr.getCnfStyleOrDivIdOrGridBefore(), new QName(Namespaces.NS_WORD12, "cantSplit"));