Represents a parser configuration that can be used as the
configuration for a "pull" parser. A pull parser allows the
application to drive the parser instead of having document
information events "pushed" to the registered handlers.
A pull parser using this type of configuration first calls
the setInputSource method. After the input
source is set, the pull parser repeatedly calls the
parse(boolean):boolean method. This method
returns a value of true if there is more to parse in the
document.
Calling the parse(XMLInputSource) is equivalent
to setting the input source and calling the
parse(boolean):boolean method with a "complete"
value of true . |