Added containsSPB and removeSPB methods instead of checkSoftPageBreak
This commit is contained in:
parent
b55e16ff87
commit
681d64375f
1 changed files with 34 additions and 24 deletions
|
@ -27,7 +27,7 @@ public class PageSplitter {
|
||||||
Node child = nodes.item(i);
|
Node child = nodes.item(i);
|
||||||
|
|
||||||
//Necessary check if node is an Element
|
//Necessary check if node is an Element
|
||||||
if ((child.getNodeType() == Node.ELEMENT_NODE) && checkSoftPageBreak(child, false)){
|
if ((child.getNodeType() == Node.ELEMENT_NODE) && containsSPB(child)){
|
||||||
String nodeName = child.getNodeName();
|
String nodeName = child.getNodeName();
|
||||||
//DEBUG
|
//DEBUG
|
||||||
//System.out.println("----------CURRENT NODE IS-------" + nodeName);
|
//System.out.println("----------CURRENT NODE IS-------" + nodeName);
|
||||||
|
@ -58,7 +58,7 @@ public class PageSplitter {
|
||||||
}
|
}
|
||||||
} else if (nodeName.equals(XMLString.TEXT_TABLE_OF_CONTENT)){
|
} else if (nodeName.equals(XMLString.TEXT_TABLE_OF_CONTENT)){
|
||||||
//HACK
|
//HACK
|
||||||
checkSoftPageBreak(childFirstPart, false);
|
containsSPB(childFirstPart);
|
||||||
i++;
|
i++;
|
||||||
continue;
|
continue;
|
||||||
} else if (nodeName.equals(XMLString.TEXT_SOFT_PAGE_BREAK)){
|
} else if (nodeName.equals(XMLString.TEXT_SOFT_PAGE_BREAK)){
|
||||||
|
@ -100,8 +100,9 @@ public class PageSplitter {
|
||||||
if(listChild.getNodeType() == Node.ELEMENT_NODE){
|
if(listChild.getNodeType() == Node.ELEMENT_NODE){
|
||||||
String nodeName = listChild.getNodeName();
|
String nodeName = listChild.getNodeName();
|
||||||
if (nodeName.equals(XMLString.TEXT_LIST_HEADER)) {
|
if (nodeName.equals(XMLString.TEXT_LIST_HEADER)) {
|
||||||
if(checkSoftPageBreak(listChild, true)){
|
if(containsSPB(listChild)){
|
||||||
//Remove inner SPB
|
//Remove inner SPB
|
||||||
|
removeSPB(listChild);
|
||||||
//HACK :(
|
//HACK :(
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -111,7 +112,7 @@ public class PageSplitter {
|
||||||
|
|
||||||
|
|
||||||
} else if (nodeName.equals(XMLString.TEXT_LIST_ITEM)) {
|
} else if (nodeName.equals(XMLString.TEXT_LIST_ITEM)) {
|
||||||
if (checkSoftPageBreak(listChild, false)){
|
if (containsSPB(listChild)){
|
||||||
Node listItemFirstPart = listChild.cloneNode(false);
|
Node listItemFirstPart = listChild.cloneNode(false);
|
||||||
//remove SPB, move previous nodes to firstPart.
|
//remove SPB, move previous nodes to firstPart.
|
||||||
if (handleListItem(listItemFirstPart,listChild)){
|
if (handleListItem(listItemFirstPart,listChild)){
|
||||||
|
@ -159,7 +160,7 @@ public class PageSplitter {
|
||||||
if(listItemChild.getNodeType() == Node.ELEMENT_NODE){
|
if(listItemChild.getNodeType() == Node.ELEMENT_NODE){
|
||||||
//Node name
|
//Node name
|
||||||
String nodeName = listItemChild.getNodeName();
|
String nodeName = listItemChild.getNodeName();
|
||||||
if (checkSoftPageBreak(listItemChild, false)){
|
if (containsSPB(listItemChild)){
|
||||||
Node listItemChildFirstPart = listItemChild.cloneNode(false);
|
Node listItemChildFirstPart = listItemChild.cloneNode(false);
|
||||||
//Break if SPB
|
//Break if SPB
|
||||||
if (nodeName.equals(XMLString.TEXT_SOFT_PAGE_BREAK)) {
|
if (nodeName.equals(XMLString.TEXT_SOFT_PAGE_BREAK)) {
|
||||||
|
@ -221,7 +222,7 @@ public class PageSplitter {
|
||||||
//Node name
|
//Node name
|
||||||
String tableChildNodeName = tableChildNode.getNodeName();
|
String tableChildNodeName = tableChildNode.getNodeName();
|
||||||
//System.out.println("Table child node " + tableChildNodeName);
|
//System.out.println("Table child node " + tableChildNodeName);
|
||||||
if (checkSoftPageBreak(tableChildNode, false)){
|
if (containsSPB(tableChildNode)){
|
||||||
Node tableChildFirstPart = tableChildNode.cloneNode(false);
|
Node tableChildFirstPart = tableChildNode.cloneNode(false);
|
||||||
if (tableChildNodeName.equals(XMLString.TEXT_SOFT_PAGE_BREAK)) {
|
if (tableChildNodeName.equals(XMLString.TEXT_SOFT_PAGE_BREAK)) {
|
||||||
// remove inner soft page break node
|
// remove inner soft page break node
|
||||||
|
@ -247,7 +248,7 @@ public class PageSplitter {
|
||||||
|| tableChildNodeName.equals(XMLString.TABLE_TABLE_HEADER_ROWS)
|
|| tableChildNodeName.equals(XMLString.TABLE_TABLE_HEADER_ROWS)
|
||||||
|| tableChildNodeName.equals(XMLString.TABLE_TABLE_HEADER_COLUMNS)) {
|
|| tableChildNodeName.equals(XMLString.TABLE_TABLE_HEADER_COLUMNS)) {
|
||||||
//Remove Soft Page Break
|
//Remove Soft Page Break
|
||||||
checkSoftPageBreak(tableChildNode, true);
|
removeSPB(tableChildNode);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -284,7 +285,7 @@ public class PageSplitter {
|
||||||
|
|
||||||
String nodeName = tableRowGroupChildNode.getNodeName();
|
String nodeName = tableRowGroupChildNode.getNodeName();
|
||||||
|
|
||||||
if (checkSoftPageBreak(tableRowGroupChildNode, false)){
|
if (containsSPB(tableRowGroupChildNode)){
|
||||||
Node tableRowGroupChildFirstPart = tableRowGroupChildNode.cloneNode(false);
|
Node tableRowGroupChildFirstPart = tableRowGroupChildNode.cloneNode(false);
|
||||||
if (nodeName.equals(XMLString.TEXT_SOFT_PAGE_BREAK)){
|
if (nodeName.equals(XMLString.TEXT_SOFT_PAGE_BREAK)){
|
||||||
// remove inner soft page break node
|
// remove inner soft page break node
|
||||||
|
@ -342,7 +343,7 @@ public class PageSplitter {
|
||||||
|
|
||||||
String nodeName = tableRowsChildNode.getNodeName();
|
String nodeName = tableRowsChildNode.getNodeName();
|
||||||
|
|
||||||
if (checkSoftPageBreak(tableRowsChildNode, false)){
|
if (containsSPB(tableRowsChildNode)){
|
||||||
Node tableRowGroupChildFirstPart = tableRowsChildNode.cloneNode(false);
|
Node tableRowGroupChildFirstPart = tableRowsChildNode.cloneNode(false);
|
||||||
if (nodeName.equals(XMLString.TEXT_SOFT_PAGE_BREAK)){
|
if (nodeName.equals(XMLString.TEXT_SOFT_PAGE_BREAK)){
|
||||||
// remove inner soft page break node
|
// remove inner soft page break node
|
||||||
|
@ -380,7 +381,7 @@ public class PageSplitter {
|
||||||
|
|
||||||
String nodeName = tableRowChildNode.getNodeName();
|
String nodeName = tableRowChildNode.getNodeName();
|
||||||
|
|
||||||
if (checkSoftPageBreak(tableRowChildNode, false)){
|
if (containsSPB(tableRowChildNode)){
|
||||||
Node tableRowGroupChildFirstPart = tableRowChildNode.cloneNode(false);
|
Node tableRowGroupChildFirstPart = tableRowChildNode.cloneNode(false);
|
||||||
if (nodeName.equals(XMLString.TABLE_TABLE_CELL)){
|
if (nodeName.equals(XMLString.TABLE_TABLE_CELL)){
|
||||||
if (handleCell(tableRowGroupChildFirstPart, tableRowChildNode)){
|
if (handleCell(tableRowGroupChildFirstPart, tableRowChildNode)){
|
||||||
|
@ -429,7 +430,7 @@ public class PageSplitter {
|
||||||
Node cellChildNode = cellChildNodes.item(0);
|
Node cellChildNode = cellChildNodes.item(0);
|
||||||
if ((cellChildNode.getNodeType() == Node.ELEMENT_NODE)) {
|
if ((cellChildNode.getNodeType() == Node.ELEMENT_NODE)) {
|
||||||
String nodeName = cellChildNode.getNodeName();
|
String nodeName = cellChildNode.getNodeName();
|
||||||
if (checkSoftPageBreak(cellChildNode, false)){
|
if (containsSPB(cellChildNode)){
|
||||||
Node cellChildFirstPart = cellChildNode.cloneNode(false);
|
Node cellChildFirstPart = cellChildNode.cloneNode(false);
|
||||||
if (nodeName.equals(XMLString.TEXT_SOFT_PAGE_BREAK)){
|
if (nodeName.equals(XMLString.TEXT_SOFT_PAGE_BREAK)){
|
||||||
// remove inner soft page break node
|
// remove inner soft page break node
|
||||||
|
@ -465,7 +466,7 @@ public class PageSplitter {
|
||||||
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();
|
||||||
if (checkSoftPageBreak(sectionChildNode, false)){
|
if (containsSPB(sectionChildNode)){
|
||||||
Node sectionChildFirstPart = sectionChildNode.cloneNode(false);
|
Node sectionChildFirstPart = sectionChildNode.cloneNode(false);
|
||||||
if (nodeName.equals(XMLString.TEXT_SOFT_PAGE_BREAK)){
|
if (nodeName.equals(XMLString.TEXT_SOFT_PAGE_BREAK)){
|
||||||
// remove inner soft page break node
|
// remove inner soft page break node
|
||||||
|
@ -480,7 +481,7 @@ public class PageSplitter {
|
||||||
} else if (nodeName.equals(XMLString.TEXT_TABLE_OF_CONTENT)) {
|
} else if (nodeName.equals(XMLString.TEXT_TABLE_OF_CONTENT)) {
|
||||||
|
|
||||||
//HACK
|
//HACK
|
||||||
checkSoftPageBreak(sectionNode, true);
|
removeSPB(sectionNode);
|
||||||
i++;
|
i++;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -511,7 +512,7 @@ public class PageSplitter {
|
||||||
String nodeName = paraChildNode.getNodeName();
|
String nodeName = paraChildNode.getNodeName();
|
||||||
//System.out.println(nodeName);
|
//System.out.println(nodeName);
|
||||||
//SPB FOUND
|
//SPB FOUND
|
||||||
if (checkSoftPageBreak(paraChildNode, false)){
|
if (containsSPB(paraChildNode)){
|
||||||
if (nodeName.equals(XMLString.TEXT_SOFT_PAGE_BREAK)){
|
if (nodeName.equals(XMLString.TEXT_SOFT_PAGE_BREAK)){
|
||||||
|
|
||||||
|
|
||||||
|
@ -564,11 +565,6 @@ public class PageSplitter {
|
||||||
* Check if last node in paraFirstPart is text and last char is a letter
|
* Check if last node in paraFirstPart is text and last char is a letter
|
||||||
* If both true - add
|
* If both true - add
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
System.out.println("ERROR: SPB INSIDE Paragraph Element in inner element " + nodeName);
|
System.out.println("ERROR: SPB INSIDE Paragraph Element in inner element " + nodeName);
|
||||||
//checkSoftPageBreak(internalNode, true);
|
//checkSoftPageBreak(internalNode, true);
|
||||||
|
@ -594,13 +590,27 @@ public class PageSplitter {
|
||||||
return dataMoved;
|
return dataMoved;
|
||||||
}
|
}
|
||||||
// Returns true if soft-page-break found. Removes it if removeFound = true
|
// Returns true if soft-page-break found. Removes it if removeFound = true
|
||||||
private static boolean checkSoftPageBreak(Node node, boolean removeFound) {
|
private static void removeSPB(Node node) {
|
||||||
if (node.getNodeType() == Node.ELEMENT_NODE) {
|
if (node.getNodeType() == Node.ELEMENT_NODE) {
|
||||||
if (node.getNodeName().equals(XMLString.TEXT_SOFT_PAGE_BREAK)) {
|
if (node.getNodeName().equals(XMLString.TEXT_SOFT_PAGE_BREAK)) {
|
||||||
if (removeFound) {
|
Node parent = node.getParentNode();
|
||||||
Node parent = node.getParentNode();
|
parent.removeChild(node);
|
||||||
parent.removeChild(node);
|
return;
|
||||||
|
}
|
||||||
|
if (node.hasChildNodes()) {
|
||||||
|
int currentNo = 0;
|
||||||
|
NodeList childNodes = node.getChildNodes();
|
||||||
|
while (currentNo < childNodes.getLength()) {
|
||||||
|
Node childNode = childNodes.item(currentNo);
|
||||||
|
removeSPB(childNode);
|
||||||
|
currentNo++;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private static boolean containsSPB(Node node) {
|
||||||
|
if (node.getNodeType() == Node.ELEMENT_NODE) {
|
||||||
|
if (node.getNodeName().equals(XMLString.TEXT_SOFT_PAGE_BREAK)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (node.hasChildNodes()) {
|
if (node.hasChildNodes()) {
|
||||||
|
@ -608,7 +618,7 @@ public class PageSplitter {
|
||||||
NodeList childNodes = node.getChildNodes();
|
NodeList childNodes = node.getChildNodes();
|
||||||
while (currentNo < childNodes.getLength()) {
|
while (currentNo < childNodes.getLength()) {
|
||||||
Node childNode = childNodes.item(currentNo);
|
Node childNode = childNodes.item(currentNo);
|
||||||
if (checkSoftPageBreak(childNode, removeFound)) {
|
if (containsSPB(childNode)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
currentNo++;
|
currentNo++;
|
||||||
|
|
Loading…
Add table
Reference in a new issue