| Package | Description |
|---|---|
| org.xmlpull.v1.builder |
This package defines API modeled after
XML Information Set
for building incrmentally XML trees
from events streamed from pull parser
(user can start navigating tree before whole XML input was parsed!)
and has an unique ability to bypass tree building for selected sub trees
to work directly with underlying event stream.
|
| org.xmlpull.v1.builder.adapter | |
| org.xmlpull.v1.builder.impl |
| Modifier and Type | Interface and Description |
|---|---|
interface |
XmlDoctype
Represents
Document Type Declaration
Information Item.
|
interface |
XmlDocument
Represents
Document Information Item
.
|
interface |
XmlElement
Represents
Element Information Item
except for in-scope namespaces that can be reconstructed by visiting this element parent,
checking its namespaces, then grandparent and so on.
|
| Modifier and Type | Method and Description |
|---|---|
XmlContainer |
XmlProcessingInstruction.getParent()
The document, element, or document type definition information item
which contains this information item in its [children] property.
|
XmlContainer |
XmlElement.getParent()
XML Infoset [parent] property.
|
XmlContainer |
XmlContained.getParent() |
XmlContainer |
XmlComment.getParent()
The document or element information item which contains this information item
in its [children] property.
|
XmlContainer |
XmlElement.getRoot()
Get top most container that is either XmlDocument or XmlElement (may be event this element!!!)
|
| Modifier and Type | Method and Description |
|---|---|
void |
XmlElement.setParent(XmlContainer parent)
Method setParent
|
void |
XmlContained.setParent(XmlContainer el) |
| Modifier and Type | Class and Description |
|---|---|
class |
XmlDocumentAdapter |
class |
XmlElementAdapter |
| Modifier and Type | Method and Description |
|---|---|
XmlContainer |
XmlElementAdapter.getParent() |
XmlContainer |
XmlElementAdapter.getRoot() |
| Modifier and Type | Method and Description |
|---|---|
void |
XmlElementAdapter.setParent(XmlContainer parent) |
| Modifier and Type | Class and Description |
|---|---|
class |
XmlDocumentImpl |
class |
XmlElementImpl
This is implementation if XML Infoset Element Information Item.
|
| Modifier and Type | Method and Description |
|---|---|
XmlContainer |
XmlElementImpl.getParent() |
XmlContainer |
XmlCommentImpl.getParent() |
XmlContainer |
XmlElementImpl.getRoot() |
| Modifier and Type | Method and Description |
|---|---|
void |
XmlElementImpl.setParent(XmlContainer parent) |
Copyright © 2013. All Rights Reserved.