public class XppReader extends AbstractPullReader
COMMENT, END_NODE, OTHER, START_NODE, TEXT
Constructor and Description |
---|
XppReader(java.io.Reader reader) |
XppReader(java.io.Reader reader,
XmlFriendlyReplacer replacer) |
Modifier and Type | Method and Description |
---|---|
void |
appendErrors(ErrorWriter errorWriter)
If any errors are detected, allow the reader to add any additional information that can aid debugging
(such as line numbers, XPath expressions, etc).
|
void |
close()
Close the reader, if necessary.
|
protected org.xmlpull.v1.XmlPullParser |
createParser()
To use another implementation of org.xmlpull.v1.XmlPullParser, override this method.
|
java.lang.String |
getAttribute(int index)
Get the value of an attribute of the current node, by index.
|
java.lang.String |
getAttribute(java.lang.String name)
Get the value of an attribute of the current node.
|
int |
getAttributeCount()
Number of attributes in current node.
|
java.lang.String |
getAttributeName(int index)
Name of attribute in current node.
|
protected java.lang.String |
pullElementName()
Pull the name of the current element from the stream.
|
protected int |
pullNextEvent()
Pull the next event from the stream.
|
protected java.lang.String |
pullText()
Pull the contents of the current text node from the stream.
|
getAttributeNames, getNodeName, getValue, hasMoreChildren, mark, moveDown, moveUp, peekNextChild, reset, underlyingReader
escapeXmlName, unescapeXmlName
public XppReader(java.io.Reader reader)
public XppReader(java.io.Reader reader, XmlFriendlyReplacer replacer)
protected org.xmlpull.v1.XmlPullParser createParser()
protected int pullNextEvent()
AbstractPullReader
This MUST return AbstractPullReader.START_NODE
, AbstractPullReader.END_NODE
, AbstractPullReader.TEXT
, AbstractPullReader.COMMENT
,
AbstractPullReader.OTHER
or throw StreamException
.
The underlying pull parser will most likely return its own event types. These must be mapped to the appropriate events.
pullNextEvent
in class AbstractPullReader
protected java.lang.String pullElementName()
AbstractPullReader
pullElementName
in class AbstractPullReader
protected java.lang.String pullText()
AbstractPullReader
pullText
in class AbstractPullReader
public java.lang.String getAttribute(java.lang.String name)
HierarchicalStreamReader
public java.lang.String getAttribute(int index)
HierarchicalStreamReader
public int getAttributeCount()
HierarchicalStreamReader
public java.lang.String getAttributeName(int index)
HierarchicalStreamReader
public void appendErrors(ErrorWriter errorWriter)
HierarchicalStreamReader
public void close()
HierarchicalStreamReader
Copyright © 2004-2012 XStream. All Rights Reserved.