Added isRootElement method to figure out if splitting element has parent

This commit is contained in:
Georgy Litvinov 2021-03-12 20:41:39 +01:00
parent 44ffd9f3ed
commit 9898cbc5ed

View file

@ -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)) {