com.bluecast.xml
public final class XMLReaderReader extends XMLInputReader
Version: $Revision: 1.5 $
Constructor Summary | |
---|---|
XMLReaderReader()
Create an XMLReaderReader without providing an input Reader yet.
| |
XMLReaderReader(Reader in)
Creates an XMLReaderReader and resets the reader position
after reading the XML declaration.
| |
XMLReaderReader(Reader in, boolean rewindDeclaration)
Creates an XMLReaderReader.
|
Method Summary | |
---|---|
void | close() |
void | mark(int readAheadLimit) |
boolean | markSupported() |
int | read() |
int | read(char[] destbuf) |
int | read(char[] destbuf, int off, int len) |
boolean | ready() |
void | reset(Reader in, boolean rewindDeclaration) |
void | reset() |
long | skip(long n) |
Parameters: in the input source
Parameters: in the input source rewindDeclaration a value of false will skip past any XML declaration. True will dish out the entire document.