Fix for page splitter
This commit is contained in:
parent
7c630236ac
commit
3176ba0d03
1 changed files with 8 additions and 2 deletions
|
@ -87,7 +87,6 @@ public class PageSplitter {
|
||||||
}
|
}
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
return onode;
|
return onode;
|
||||||
}
|
}
|
||||||
private static boolean handleList(Node listFirstPart, Node list){
|
private static boolean handleList(Node listFirstPart, Node list){
|
||||||
|
@ -463,6 +462,7 @@ public class PageSplitter {
|
||||||
int i = 0;
|
int i = 0;
|
||||||
NodeList sectionChildNodes = sectionNode.getChildNodes();
|
NodeList sectionChildNodes = sectionNode.getChildNodes();
|
||||||
while (sectionChildNodes.getLength() > i) {
|
while (sectionChildNodes.getLength() > i) {
|
||||||
|
|
||||||
Node sectionChildNode = sectionChildNodes.item(0);
|
Node sectionChildNode = sectionChildNodes.item(0);
|
||||||
if ((sectionChildNode.getNodeType() == Node.ELEMENT_NODE)) {
|
if ((sectionChildNode.getNodeType() == Node.ELEMENT_NODE)) {
|
||||||
String nodeName = sectionChildNode.getNodeName();
|
String nodeName = sectionChildNode.getNodeName();
|
||||||
|
@ -484,12 +484,17 @@ public class PageSplitter {
|
||||||
removeSPB(sectionNode);
|
removeSPB(sectionNode);
|
||||||
i++;
|
i++;
|
||||||
continue;
|
continue;
|
||||||
|
} else if (nodeName.equals(XMLString.TABLE_TABLE)) {
|
||||||
|
if (handleTableTable(sectionChildFirstPart, sectionChildNode)){
|
||||||
|
sectionFirstPart.appendChild(sectionChildFirstPart);
|
||||||
|
dataMoved=true;
|
||||||
|
}
|
||||||
} else if (nodeName.equals(XMLString.TEXT_SECTION)) {
|
} else if (nodeName.equals(XMLString.TEXT_SECTION)) {
|
||||||
if (handleSection(sectionChildFirstPart, sectionChildNode)){
|
if (handleSection(sectionChildFirstPart, sectionChildNode)){
|
||||||
sectionFirstPart.appendChild(sectionChildFirstPart);
|
sectionFirstPart.appendChild(sectionChildFirstPart);
|
||||||
dataMoved=true;
|
dataMoved=true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//split node with spb and exit
|
//split node with spb and exit
|
||||||
break;
|
break;
|
||||||
} else {
|
} else {
|
||||||
|
@ -503,6 +508,7 @@ public class PageSplitter {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return dataMoved;
|
return dataMoved;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue