Refactored span splitter
This commit is contained in:
parent
f3e6f8efa0
commit
70fc8b4307
1 changed files with 5 additions and 3 deletions
|
@ -671,14 +671,16 @@ public class ODFPageSplitter {
|
|||
int i = 0;
|
||||
while (childs.getLength() > i) {
|
||||
Node child = childs.item(i);
|
||||
String childName = child.getNodeName();
|
||||
if (child.getNodeType() == Node.ELEMENT_NODE) {
|
||||
if (containsSPB(child)) {
|
||||
if (child.getNodeName().equals(TEXT_NOTE)) {
|
||||
if (childName.equals(TEXT_NOTE)) {
|
||||
splitText(((Element)child).getElementsByTagName(TEXT_NOTE_BODY).item(0), officeReader);
|
||||
} else if (child.getNodeName().equals(TEXT_SPAN)){
|
||||
} else if (childName.equals(TEXT_SPAN)){
|
||||
handleSpan(child);
|
||||
} else {
|
||||
System.out.println("SPB INSIDE SPAN! HELP!");
|
||||
System.out.println("Error. SPB in unknown element " + childName);
|
||||
System.exit(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue