* @param tableSourceCellRangeAddressesValue the <code>String</code> value of <code>TableSourceCellRangeAddressesAttribute</code>, see {@odf.attribute table:source-cell-range-addresses} at specification
* @param tableTargetCellAddressValue the <code>String</code> value of <code>TableTargetCellAddressAttribute</code>, see {@odf.attribute table:target-cell-address} at specification
* @return the element {@odf.element table:consolidation}
*/
public TableConsolidationElement newTableConsolidationElement(String tableFunctionValue, String tableSourceCellRangeAddressesValue, String tableTargetCellAddressValue) {
TableConsolidationElement tableConsolidation = ((OdfFileDom) this.ownerDocument).newOdfElement(TableConsolidationElement.class);
tableConsolidation.setTableFunctionAttribute(tableFunctionValue);
tableConsolidation.setTableSourceCellRangeAddressesAttribute(tableSourceCellRangeAddressesValue);
tableConsolidation.setTableTargetCellAddressAttribute(tableTargetCellAddressValue);
this.appendChild(tableConsolidation);
return tableConsolidation;
}