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
.
@author Andy Clark, IBM
@version $Id: XMLPullParserConfiguration.java,v 1.2 2001/08/23 00:35:37 lehors Exp $
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|