Uses of Interface
org.xmlunit.diff.ComparisonListener
-
Packages that use ComparisonListener Package Description org.custommonkey.xmlunit Root of the XMLUnit 1.x compatibility layer.org.xmlunit.assertj AssertJ assertions on top of XMLUnit's core.org.xmlunit.builder Provides fluent builders for core parts of XMLUnit.org.xmlunit.diff Contains XMLUnitDifferenceEngine
that is at the heart of all comparisons as well as supporting interfaces and implementations.org.xmlunit.matchers Hamcrest matchers on top of XMLUnit's core. -
-
Uses of ComparisonListener in org.custommonkey.xmlunit
Classes in org.custommonkey.xmlunit that implement ComparisonListener Modifier and Type Class Description private static class
NewDifferenceEngine.IsBetweenDocumentNodeAndRootElement
Tests whether the DifferenceEngine is currently processing comparisons of "things" between the document node and the document's root element (comments or PIs, mostly) since these must be ignored for backwards compatibility reasons.static class
NewDifferenceEngine.MatchTracker2ComparisonListener
-
Uses of ComparisonListener in org.xmlunit.assertj
Methods in org.xmlunit.assertj with parameters of type ComparisonListener Modifier and Type Method Description CompareAssert
CompareAssert. withComparisonListeners(ComparisonListener... comparisonListeners)
Registers listeners that are notified of each comparison.CompareAssert
CompareAssert. withDifferenceListeners(ComparisonListener... comparisonListeners)
Registers listeners that are notified of each comparison with outcome other thanComparisonResult.EQUAL
. -
Uses of ComparisonListener in org.xmlunit.builder
Classes in org.xmlunit.builder that implement ComparisonListener Modifier and Type Class Description private static class
DiffBuilder.CollectResultsListener
Fields in org.xmlunit.builder with type parameters of type ComparisonListener Modifier and Type Field Description private java.util.List<ComparisonListener>
DiffBuilder. comparisonListeners
private java.util.List<ComparisonListener>
DiffBuilder. differenceListeners
Methods in org.xmlunit.builder with parameters of type ComparisonListener Modifier and Type Method Description DiffBuilder
DiffBuilder. withComparisonListeners(ComparisonListener... comparisonListeners)
Registers listeners that are notified of each comparison.D
DifferenceEngineConfigurer. withComparisonListeners(ComparisonListener... comparisonListeners)
Registers listeners that are notified of each comparison.DiffBuilder
DiffBuilder. withDifferenceListeners(ComparisonListener... comparisonListeners)
Registers listeners that are notified of each comparison with outcome other thanComparisonResult.EQUAL
.D
DifferenceEngineConfigurer. withDifferenceListeners(ComparisonListener... comparisonListeners)
Registers listeners that are notified of each comparison with outcome other thanComparisonResult.EQUAL
. -
Uses of ComparisonListener in org.xmlunit.diff
Fields in org.xmlunit.diff with type parameters of type ComparisonListener Modifier and Type Field Description private java.util.List<ComparisonListener>
ComparisonListenerSupport. compListeners
private java.util.List<ComparisonListener>
ComparisonListenerSupport. diffListeners
private java.util.List<ComparisonListener>
ComparisonListenerSupport. matchListeners
Methods in org.xmlunit.diff with parameters of type ComparisonListener Modifier and Type Method Description void
AbstractDifferenceEngine. addComparisonListener(ComparisonListener l)
void
ComparisonListenerSupport. addComparisonListener(ComparisonListener l)
Registers a listener that is notified of each comparison.void
DifferenceEngine. addComparisonListener(ComparisonListener l)
Registers a listener that is notified of each comparison.void
AbstractDifferenceEngine. addDifferenceListener(ComparisonListener l)
void
ComparisonListenerSupport. addDifferenceListener(ComparisonListener l)
Registers a listener that is notified of each comparison with outcome other thanComparisonResult.EQUAL
.void
DifferenceEngine. addDifferenceListener(ComparisonListener l)
Registers a listener that is notified of each comparison with outcome other thanComparisonResult.EQUAL
.void
AbstractDifferenceEngine. addMatchListener(ComparisonListener l)
void
ComparisonListenerSupport. addMatchListener(ComparisonListener l)
Registers a listener that is notified of each comparison with outcomeComparisonResult.EQUAL
.void
DifferenceEngine. addMatchListener(ComparisonListener l)
Registers a listener that is notified of each comparison with outcomeComparisonResult.EQUAL
.Method parameters in org.xmlunit.diff with type arguments of type ComparisonListener Modifier and Type Method Description private static void
ComparisonListenerSupport. fire(Comparison comparison, ComparisonResult outcome, java.util.List<ComparisonListener> listeners)
-
Uses of ComparisonListener in org.xmlunit.matchers
Methods in org.xmlunit.matchers with parameters of type ComparisonListener Modifier and Type Method Description CompareMatcher
CompareMatcher. withComparisonListeners(ComparisonListener... comparisonListeners)
CompareMatcher
CompareMatcher. withDifferenceListeners(ComparisonListener... comparisonListeners)
-