Refactored handle cell.
This commit is contained in:
parent
6d14ebecaa
commit
3a453fb046
1 changed files with 11 additions and 6 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue