Package org.saxpath
Interface XPathReader
-
- All Superinterfaces:
SAXPathEventSource
public interface XPathReader extends SAXPathEventSource
Interface for readers which can parse textual XPath expressions, and produce callbacks toXPathHandler
objects.- Author:
- bob mcwhirter (bob@werken.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
parse(java.lang.String xpath)
Perform parsing of the textual XPath expression, and produce event callbacks to anXPathHandler
.-
Methods inherited from interface org.saxpath.SAXPathEventSource
getXPathHandler, setXPathHandler
-
-
-
-
Method Detail
-
parse
void parse(java.lang.String xpath) throws SAXPathException
Perform parsing of the textual XPath expression, and produce event callbacks to anXPathHandler
.- Parameters:
xpath
- The textual XPath expression to parse.- Throws:
SAXPathException
- In the event an error occurs.
-
-