com.leaprnd.deltadom.matching.ElementMatcherFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
A high performance Java library for finding the differences between two HTML documents
The newest version!
package com.leaprnd.deltadom.matching;
import org.w3c.dom.Element;
class ElementMatcherFactory extends ElementCalculator implements MatcherFactory {
@Override
public Matcher newMatcher() {
return new ElementMatcher(this);
}
}