Added isRootElement method to figure out if splitting element has parent
This commit is contained in:
parent
44ffd9f3ed
commit
9898cbc5ed
1 changed files with 8 additions and 0 deletions
|
@ -101,6 +101,14 @@ public class BasicSplitter {
|
|||
return false;
|
||||
}
|
||||
|
||||
private static boolean isRootElement(Node node) {
|
||||
Node parent = node.getParentNode();
|
||||
if (parent.getNodeName().equals("office:text")) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
protected static void removeSPB(Node node) {
|
||||
if (node.getNodeType() == Node.ELEMENT_NODE) {
|
||||
if (node.getNodeName().equals(TEXT_SOFT_PAGE_BREAK)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue