org.docx4j.model.datastorage.BindingTraverserTableHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docx4j Show documentation
Show all versions of docx4j Show documentation
docx4j is a library which helps you to work with the Office Open
XML file format as used in docx
documents, pptx presentations, and xlsx spreadsheets.
The newest version!
package org.docx4j.model.datastorage;
import org.docx4j.convert.in.xhtml.XHTMLImporter;
import org.docx4j.wml.Tbl;
import org.docx4j.wml.TblWidth;
import org.docx4j.wml.Tc;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class BindingTraverserTableHelper {
private static Logger log = LoggerFactory.getLogger(BindingTraverserTableHelper.class);
/**
* Get table cell width from tc and table style from tbl and set it to xHTMLImporter.
* @param tbl
* @param tc
* @param xHTMLImporter
*/
public static void setupMaxWidthAndStyleForTc(Tbl tbl, Tc tc, XHTMLImporter xHTMLImporter) {
if(tc.getTcPr() != null && tc.getTcPr().getTcW() != null) {
TblWidth tcW = tc.getTcPr().getTcW();
if (tcW.getW()!= null && tcW.getType().equals(TblWidth.TYPE_DXA)) {
int maxWidth = tcW.getW().intValue();
String styleVal = null;
if(tbl != null && tbl.getTblPr() != null && tbl.getTblPr().getTblStyle() != null) {
styleVal = tbl.getTblPr().getTblStyle().getVal();
}
log.debug("inserting in a tc, with maxwidth: " + maxWidth + ", and table style: " + styleVal);
xHTMLImporter.setMaxWidth(maxWidth, styleVal);
} else {
log.debug("w:tcPr/w:tcW present, but width not in dxa units ");
}
} else {
log.debug("w:tcPr/w:tcW not present");
}
}
}