Package | Description |
---|---|
org.gjt.xpp |
This package defines classes compromising public API of XML Pull Parser 2.0 (org.gjt.xpp).
|
org.gjt.xpp.impl |
Constains reference implementation of Xml Pull Parser 2.0 (org.gjt.xpp).
|
org.gjt.xpp.impl.format | |
org.gjt.xpp.impl.node | |
org.gjt.xpp.impl.pullnode | |
org.gjt.xpp.impl.pullparser | |
org.gjt.xpp.x2impl | |
org.gjt.xpp.x2impl.x2pullparser |
Modifier and Type | Interface and Description |
---|---|
interface |
XmlPullNode
This class represents pullable XML subtree - children are built on
demand.
|
Modifier and Type | Method and Description |
---|---|
XmlNode |
XmlNode.getParentNode() |
XmlNode |
XmlPullNode.newNode() |
XmlNode |
XmlNode.newNode()
context sensitive factory method to create the same type of node
|
XmlNode |
XmlPullParserFactory.newNode()
Return new XML node.
|
XmlNode |
XmlNode.newNode(java.lang.String amespaceUri,
java.lang.String localName) |
XmlNode |
XmlPullParserFactory.newNode(XmlPullParser pp)
Return new XML node that is represeting tree from current pull parser start tag.
|
XmlNode |
XmlPullParserFactory.readNode(java.io.Reader reader)
Equivalent to calling readNode(reader, false);
|
XmlNode |
XmlPullParserFactory.readNode(java.io.Reader reader,
boolean closeAtEnd)
Read XmlNode from input - essentially it is utility function that
will create instance of pull parser, feed input inpt it and
return new node tree parsed form the input.
|
Modifier and Type | Method and Description |
---|---|
byte |
XmlPullParser.readNode(XmlNode node)
Read subtree into node: call readNodeWithoutChildren
and then parse subtree adding children
(values obtained with readXontent or readNodeWithoutChildren).
|
void |
XmlPullParser.readNodeWithoutChildren(XmlNode node)
Read node: it calls readStartTag and then if parser is namespaces
aware currently declared nemaspeces will be added
and defaultNamespace will be set.
|
void |
XmlNode.setParentNode(XmlNode parent) |
void |
XmlRecorder.writeNode(XmlNode node) |
void |
XmlPullParserFactory.writeNode(XmlNode node,
java.io.Writer writer)
Equivalent to calling writeNode(node, writer, false);
|
void |
XmlPullParserFactory.writeNode(XmlNode node,
java.io.Writer writer,
boolean closeAtEnd) |
Modifier and Type | Method and Description |
---|---|
XmlNode |
PullParserFactorySmallImpl.newNode() |
XmlNode |
PullParserFactoryFullImpl.newNode() |
Modifier and Type | Method and Description |
---|---|
void |
Recorder.writeNode(XmlNode node) |
Modifier and Type | Class and Description |
---|---|
class |
Node
Encapsulate XML Node with list of associated children and namespaces :-).
|
Modifier and Type | Field and Description |
---|---|
protected XmlNode |
Node.parent |
Modifier and Type | Method and Description |
---|---|
XmlNode |
Node.getParentNode() |
XmlNode |
Node.newNode()
context sensitive factory method to create the same type of node
|
XmlNode |
Node.newNode(java.lang.String namespaceUri,
java.lang.String localName) |
Modifier and Type | Method and Description |
---|---|
void |
Node.setParentNode(XmlNode parent) |
Modifier and Type | Class and Description |
---|---|
class |
PullNode
Allows node tree to be constructed on demand.
|
Modifier and Type | Method and Description |
---|---|
XmlNode |
PullNode.newNode() |
Modifier and Type | Method and Description |
---|---|
byte |
PullParser.readNode(XmlNode node) |
void |
PullParser.readNodeWithoutChildren(XmlNode node) |
Modifier and Type | Method and Description |
---|---|
XmlNode |
X2PullParserFactoryImpl.newNode() |
Modifier and Type | Method and Description |
---|---|
byte |
X2PullParser.readNode(XmlNode node) |
void |
X2PullParser.readNodeWithoutChildren(XmlNode node) |
Copyright (c) 2003 IU Extreme! Lab http://www.extreme.indiana.edu/ All Rights Reserved.
Note this package is deprecated by XPP3 that implements XmlPull API