Package org.outerj.daisy.diff.output
Interface Differ
- All Known Implementing Classes:
HTMLDiffer
public interface Differ
Interface for classes that are interested in the tree-like result structure
as produced by DaisyDiff.
- See Also:
-
HtmlDiffer
-
Method Summary
Modifier and TypeMethodDescriptionvoid
diff
(TextNodeComparator leftComparator, TextNodeComparator rightComparator) Compares two Node Trees.
-
Method Details
-
diff
void diff(TextNodeComparator leftComparator, TextNodeComparator rightComparator) throws SAXException Compares two Node Trees.- Parameters:
leftComparator
- Root of the first tree.rightComparator
- Root of the second tree.- Throws:
SAXException
- something went wrong with parsing of the trees.
-