Refactored handle cell.

This commit is contained in:
Georgy Litvinov 2020-07-24 20:34:11 +02:00
parent 6d14ebecaa
commit 3a453fb046

View file

@ -491,18 +491,17 @@ public class ODFPageSplitter {
String nodeName = tableRowChildNode.getNodeName();
if (containsSPB(tableRowChildNode)){
Node tableRowGroupChildFirstPart = tableRowChildNode.cloneNode(false);
if (nodeName.equals(TABLE_TABLE_CELL)){
if (handleCell(tableRowGroupChildFirstPart, tableRowChildNode)){
if (handleCell(tableRowChildNode)){
dataMoved = true;
tableRowFirstPart.appendChild(tableRowGroupChildFirstPart);
tableRowFirstPart.appendChild(tableRowChildNode.getPreviousSibling());
}
} else if (nodeName.equals(TABLE_COVERED_TABLE_CELL)){
//Implement handleCoveredCell in future
if (handleCell(tableRowGroupChildFirstPart, tableRowChildNode)){
if (handleCell(tableRowChildNode)){
dataMoved = true;
tableRowFirstPart.appendChild(tableRowGroupChildFirstPart);
tableRowFirstPart.appendChild(tableRowChildNode.getPreviousSibling());
}
}
} else {
@ -533,7 +532,9 @@ public class ODFPageSplitter {
}
return dataMoved;
}
private static boolean handleCell(Node cellFirstPart, Node cellNode) {
private static boolean handleCell( Node cellNode) {
Node cellFirstPart = cellNode.cloneNode(false);
Node parent = cellNode.getParentNode();
boolean dataMoved = false;
// Node counter
int i = 0;
@ -578,6 +579,10 @@ public class ODFPageSplitter {
}
}
if (dataMoved) {
parent.insertBefore(cellFirstPart, cellNode);
}
return dataMoved;
}
private static boolean handleSection(Node section) {