Package org.jaxen.saxpath
Interface SAXPathEventSource
-
- All Known Subinterfaces:
XPathReader
- All Known Implementing Classes:
XPathReader
public interface SAXPathEventSource
Interface for any object capable of generating SAXPath events to anXPathHandler
.- Author:
- bob mcwhirter (bob@werken.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description XPathHandler
getXPathHandler()
Retrieve the currentXPathHandler
which receives the event callbacks.void
setXPathHandler(XPathHandler handler)
Set theXPathHandler
to receive event callbacks during the parse.
-
-
-
Method Detail
-
setXPathHandler
void setXPathHandler(XPathHandler handler)
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
-
-