SAXState-class {XML} | R Documentation |
This is a degenerate virtual class which others are
expected to sub-class so as to define when they want to
use S4 methods as handler functions for SAX-based XML parsing.
The idea is that one can pass both i) a collection of handlers
to xmlEventParse
which are simply
the generic functions for the different SAX actions,
and ii) a suitable object to maintain state across
the different SAX calls.
This is used to perform the method dispatching to get
the appropriate behavior for the action.
Each of these methods is expected to return the
updated state object and the SAX parser
will pass this in the next callback.
We define this class here so that we can provide
default methods for each of the different handler
actions. This allows other programmers to define
new classes to maintain state that are sub-class
of SAXState
and then they do not have to
implement methods for each of the
different handlers.
A virtual Class: No objects may be created from it.
signature(content = "ANY", .state = "SAXState")
: ... signature(name = "ANY", .state = "SAXState")
: ... signature(name = "ANY", base = "ANY", sysId = "ANY", publicId = "ANY", notationName = "ANY", .state = "SAXState")
: ... signature(target = "ANY", content = "ANY", .state = "SAXState")
: ... signature(name = "ANY", atts = "ANY", .state = "SAXState")
: ... signature(content = "ANY", .state = "SAXState")
: ... Duncan Temple Lang
http://www.w3.org/XML, http://www.xmlsoft.org