Fix for page splitter

This commit is contained in:
George Litvinov 2018-03-21 16:15:18 +03:00 committed by Georgy Litvinov
parent 7c630236ac
commit 3176ba0d03

View file

@ -87,7 +87,6 @@ public class PageSplitter {
}
i++;
}
return onode;
}
private static boolean handleList(Node listFirstPart, Node list){
@ -463,6 +462,7 @@ public class PageSplitter {
int i = 0;
NodeList sectionChildNodes = sectionNode.getChildNodes();
while (sectionChildNodes.getLength() > i) {
Node sectionChildNode = sectionChildNodes.item(0);
if ((sectionChildNode.getNodeType() == Node.ELEMENT_NODE)) {
String nodeName = sectionChildNode.getNodeName();
@ -484,12 +484,17 @@ public class PageSplitter {
removeSPB(sectionNode);
i++;
continue;
} else if (nodeName.equals(XMLString.TABLE_TABLE)) {
if (handleTableTable(sectionChildFirstPart, sectionChildNode)){
sectionFirstPart.appendChild(sectionChildFirstPart);
dataMoved=true;
}
} else if (nodeName.equals(XMLString.TEXT_SECTION)) {
if (handleSection(sectionChildFirstPart, sectionChildNode)){
sectionFirstPart.appendChild(sectionChildFirstPart);
dataMoved=true;
}
}
}
//split node with spb and exit
break;
} else {
@ -503,6 +508,7 @@ public class PageSplitter {
}
}
return dataMoved;
}