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++;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue