us.codecraft.xsoup.XPathEvaluator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xsoup Show documentation
Show all versions of xsoup Show documentation
HTML XPath selector based on Jsoup.
package us.codecraft.xsoup;
import org.jsoup.nodes.Element;
/**
* @author [email protected]
*/
public interface XPathEvaluator {
XElements evaluate(Element element);
boolean hasAttribute();
}