| org.custommonkey.xmlunit.ComparisonController
All known Subclasses: org.custommonkey.xmlunit.Diff,
ComparisonController | public interface ComparisonController (Code) | | Callback interface used by DifferenceEngine to determine whether to halt the
node-by-node comparison of two pieces of XML
|
Method Summary | |
boolean | haltComparison(Difference afterDifference) Determine whether a Difference that the listener has been notified of
should halt further XML comparison. |
haltComparison | boolean haltComparison(Difference afterDifference)(Code) | | Determine whether a Difference that the listener has been notified of
should halt further XML comparison. Default behaviour for a Diff
instance is to halt if the Difference is not recoverable.
See Also: Difference.isRecoverable Parameters: afterDifference - the last Difference passed to differenceFound true to halt further comparison, false otherwise |
|
|