Package org.saxpath
Interface SAXPathEventSource
- All Known Subinterfaces:
XPathReader
public interface SAXPathEventSource
Interface for any object capable of generating
SAXPath events to an
XPathHandler
.- Author:
- bob mcwhirter (bob@werken.com)
-
Method Summary
Modifier and TypeMethodDescriptionRetrieve the currentXPathHandler
which receives the event callbacks.void
setXPathHandler
(XPathHandler handler) Set theXPathHandler
to receive event callbacks during the parse.
-
Method Details
-
setXPathHandler
Set theXPathHandler
to receive event callbacks during the parse.- Parameters:
handler
- The handler to receive callbacks.
-
getXPathHandler
XPathHandler getXPathHandler()Retrieve the currentXPathHandler
which receives the event callbacks.- Returns:
- The currently installed
XPathHandler
.
-