Package org.jaxen.saxpath
Interface XPathReader
-
- All Superinterfaces:
SAXPathEventSource
public interface XPathReader extends SAXPathEventSource
Interface for readers which can parse textual XPath expressions, and produce callbacks toXPathHandlerobjects.- Author:
- bob mcwhirter (bob@werken.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidparse(java.lang.String xpath)Parse an XPath expression, and send event callbacks to anXPathHandler.-
Methods inherited from interface org.jaxen.saxpath.SAXPathEventSource
getXPathHandler, setXPathHandler
-
-
-
-
Method Detail
-
parse
void parse(java.lang.String xpath) throws SAXPathExceptionParse an XPath expression, and send event callbacks to anXPathHandler.- Parameters:
xpath- the textual XPath expression to parse- Throws:
SAXPathException- if the expression is syntactically incorrect
-
-