Refactored table row split metho
This commit is contained in:
parent
b1788f2472
commit
4ff33bcc3f
1 changed files with 26 additions and 15 deletions
|
@ -322,9 +322,9 @@ public class ODFPageSplitter {
|
||||||
table.removeChild(tableChildNode);
|
table.removeChild(tableChildNode);
|
||||||
|
|
||||||
} else if (tableChildNodeName.equals(TABLE_TABLE_ROW_GROUP)) {
|
} else if (tableChildNodeName.equals(TABLE_TABLE_ROW_GROUP)) {
|
||||||
if (handleTableRowGroup(tableChildFirstPart, tableChildNode)){
|
if (handleTableRowGroup(tableChildNode)){
|
||||||
dataMoved = true;
|
dataMoved = true;
|
||||||
tableFirstPart.appendChild(tableChildFirstPart);
|
tableFirstPart.appendChild(tableChildNode.getPreviousSibling());
|
||||||
}
|
}
|
||||||
} else if ( tableChildNodeName.equals(TABLE_TABLE_ROWS)) {
|
} else if ( tableChildNodeName.equals(TABLE_TABLE_ROWS)) {
|
||||||
if (handleTableRows(tableChildFirstPart, tableChildNode)){
|
if (handleTableRows(tableChildFirstPart, tableChildNode)){
|
||||||
|
@ -332,9 +332,9 @@ public class ODFPageSplitter {
|
||||||
tableFirstPart.appendChild(tableChildFirstPart);
|
tableFirstPart.appendChild(tableChildFirstPart);
|
||||||
}
|
}
|
||||||
} else if ( tableChildNodeName.equals(TABLE_TABLE_ROW)) {
|
} else if ( tableChildNodeName.equals(TABLE_TABLE_ROW)) {
|
||||||
if (handleTableRow(tableChildFirstPart, tableChildNode)){
|
if (handleTableRow(tableChildNode)){
|
||||||
dataMoved = true;
|
dataMoved = true;
|
||||||
tableFirstPart.appendChild(tableChildFirstPart);
|
tableFirstPart.appendChild(tableChildNode.getPreviousSibling());
|
||||||
}
|
}
|
||||||
} else if (tableChildNodeName.equals(TABLE_TABLE_COLUMN)
|
} else if (tableChildNodeName.equals(TABLE_TABLE_COLUMN)
|
||||||
|| tableChildNodeName.equals(TABLE_TABLE_COLUMN_GROUP)
|
|| tableChildNodeName.equals(TABLE_TABLE_COLUMN_GROUP)
|
||||||
|
@ -370,8 +370,10 @@ public class ODFPageSplitter {
|
||||||
return dataMoved;
|
return dataMoved;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static boolean handleTableRowGroup(Node tableRowGroupFistPart, Node tableRowGroup) {
|
private static boolean handleTableRowGroup(Node tableRowGroup) {
|
||||||
boolean dataMoved = false;
|
boolean dataMoved = false;
|
||||||
|
Node parent = tableRowGroup.getParentNode();
|
||||||
|
Node tableRowGroupFistPart = tableRowGroup.cloneNode(false);
|
||||||
// Node counter
|
// Node counter
|
||||||
int i = 0;
|
int i = 0;
|
||||||
NodeList tableRowGroupChildNodes = tableRowGroup.getChildNodes();
|
NodeList tableRowGroupChildNodes = tableRowGroup.getChildNodes();
|
||||||
|
@ -392,14 +394,14 @@ public class ODFPageSplitter {
|
||||||
//Not needed to set dataMoved = true, not needed to append First part
|
//Not needed to set dataMoved = true, not needed to append First part
|
||||||
|
|
||||||
} else if (nodeName.equals(TABLE_TABLE_ROW)){
|
} else if (nodeName.equals(TABLE_TABLE_ROW)){
|
||||||
if (handleTableRow(tableRowGroupChildFirstPart, tableRowGroupChildNode)){
|
if (handleTableRow(tableRowGroupChildNode)){
|
||||||
dataMoved = true;
|
dataMoved = true;
|
||||||
tableRowGroupFistPart.appendChild(tableRowGroupChildFirstPart);
|
tableRowGroupFistPart.appendChild(tableRowGroupChildNode.getPreviousSibling());
|
||||||
}
|
}
|
||||||
} else if (nodeName.equals(TABLE_TABLE_ROW_GROUP)){
|
} else if (nodeName.equals(TABLE_TABLE_ROW_GROUP)){
|
||||||
if (handleTableRowGroup(tableRowGroupChildFirstPart, tableRowGroupChildNode)){
|
if (handleTableRowGroup(tableRowGroupChildNode)){
|
||||||
dataMoved = true;
|
dataMoved = true;
|
||||||
tableRowGroupFistPart.appendChild(tableRowGroupChildFirstPart);
|
tableRowGroupFistPart.appendChild(tableRowGroupChildNode.getPreviousSibling());
|
||||||
}
|
}
|
||||||
} else if (nodeName.equals(TABLE_TABLE_ROWS)){
|
} else if (nodeName.equals(TABLE_TABLE_ROWS)){
|
||||||
if (handleTableRows(tableRowGroupChildFirstPart, tableRowGroupChildNode)){
|
if (handleTableRows(tableRowGroupChildFirstPart, tableRowGroupChildNode)){
|
||||||
|
@ -426,6 +428,10 @@ public class ODFPageSplitter {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
if (dataMoved) {
|
||||||
|
parent.insertBefore(tableRowGroupFistPart, tableRowGroup);
|
||||||
|
}
|
||||||
|
|
||||||
return dataMoved;
|
return dataMoved;
|
||||||
}
|
}
|
||||||
private static boolean handleTableRows(Node tableRowsFistPart, Node tableRows) {
|
private static boolean handleTableRows(Node tableRowsFistPart, Node tableRows) {
|
||||||
|
@ -446,9 +452,9 @@ public class ODFPageSplitter {
|
||||||
tableRows.removeChild(tableRowsChildNode);
|
tableRows.removeChild(tableRowsChildNode);
|
||||||
|
|
||||||
} else if (nodeName.equals(TABLE_TABLE_ROW)){
|
} else if (nodeName.equals(TABLE_TABLE_ROW)){
|
||||||
if (handleTableRow(tableRowGroupChildFirstPart, tableRowsChildNode)){
|
if (handleTableRow(tableRowsChildNode)){
|
||||||
dataMoved = true;
|
dataMoved = true;
|
||||||
tableRowsFistPart.appendChild(tableRowGroupChildFirstPart);
|
tableRowsFistPart.appendChild(tableRowsChildNode.getPreviousSibling());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -466,7 +472,9 @@ public class ODFPageSplitter {
|
||||||
}
|
}
|
||||||
return dataMoved;
|
return dataMoved;
|
||||||
}
|
}
|
||||||
private static boolean handleTableRow(Node tableRowFistPart, Node tableRow) {
|
private static boolean handleTableRow(Node tableRow) {
|
||||||
|
Node tableRowFirstPart = tableRow.cloneNode(false);
|
||||||
|
Node parent = tableRow.getParentNode();
|
||||||
boolean dataMoved = false;
|
boolean dataMoved = false;
|
||||||
// Node counter
|
// Node counter
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
@ -482,20 +490,20 @@ public class ODFPageSplitter {
|
||||||
if (nodeName.equals(TABLE_TABLE_CELL)){
|
if (nodeName.equals(TABLE_TABLE_CELL)){
|
||||||
if (handleCell(tableRowGroupChildFirstPart, tableRowChildNode)){
|
if (handleCell(tableRowGroupChildFirstPart, tableRowChildNode)){
|
||||||
dataMoved = true;
|
dataMoved = true;
|
||||||
tableRowFistPart.appendChild(tableRowGroupChildFirstPart);
|
tableRowFirstPart.appendChild(tableRowGroupChildFirstPart);
|
||||||
}
|
}
|
||||||
|
|
||||||
} else if (nodeName.equals(TABLE_COVERED_TABLE_CELL)){
|
} else if (nodeName.equals(TABLE_COVERED_TABLE_CELL)){
|
||||||
//Implement handleCoveredCell in future
|
//Implement handleCoveredCell in future
|
||||||
if (handleCell(tableRowGroupChildFirstPart, tableRowChildNode)){
|
if (handleCell(tableRowGroupChildFirstPart, tableRowChildNode)){
|
||||||
dataMoved = true;
|
dataMoved = true;
|
||||||
tableRowFistPart.appendChild(tableRowGroupChildFirstPart);
|
tableRowFirstPart.appendChild(tableRowGroupChildFirstPart);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
//System.out.println("HERE " + nodeName);
|
//System.out.println("HERE " + nodeName);
|
||||||
//Move node without SPB above
|
//Move node without SPB above
|
||||||
tableRowFistPart.appendChild(tableRowChildNode.cloneNode(true));
|
tableRowFirstPart.appendChild(tableRowChildNode.cloneNode(true));
|
||||||
Node emptyCell = tableRowChildNode.cloneNode(false);
|
Node emptyCell = tableRowChildNode.cloneNode(false);
|
||||||
Document document = tableRow.getOwnerDocument();
|
Document document = tableRow.getOwnerDocument();
|
||||||
Element textP = document.createElement(TEXT_P);
|
Element textP = document.createElement(TEXT_P);
|
||||||
|
@ -515,6 +523,9 @@ public class ODFPageSplitter {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
if (dataMoved) {
|
||||||
|
parent.insertBefore(tableRowFirstPart, tableRow);
|
||||||
|
}
|
||||||
return dataMoved;
|
return dataMoved;
|
||||||
}
|
}
|
||||||
private static boolean handleCell(Node cellFirstPart, Node cellNode) {
|
private static boolean handleCell(Node cellFirstPart, Node cellNode) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue