19package org.openoffice.xmerge.merger.merge;
21import org.w3c.dom.Node;
22import org.w3c.dom.NodeList;
65 NodeList children = node.getChildNodes();
66 int numOfChildren = children.getLength();
72 for (
int i = 0;
i < numOfChildren;
i++) {
This is an implementation of the MergeAlgorithm interface.
ConverterCapabilities cc_
The capabilities of this converter.
This class extends the DocumentMerge class.
SheetMerge(ConverterCapabilities cc, NodeMergeAlgorithm merge)
Constructor.
void clearRow(Node node)
Clear the row corresponding to the Node.
void removeNode(Node node)
Remove specified Node.
Utility methods to handle sheet XML tree.
static void emptyCell(ConverterCapabilities cc, Node node)
Empty the content of a cell value.
A ConverterCapabilities object is used by DocumentMerger implementations.
This is an interface for a MergeAlgorithm to merge two Node objects.
The DiffAlgorithm and MergeAlgorithm are used to provide the merge capabilities of this project.
Provides interfaces for converting between two Document formats, and supports a "merge" interface for...