public class Document extends Node
Modifier and Type | Field and Description |
---|---|
protected int |
rootIndex |
CDSECT, children, COMMENT, DOCDECL, DOCUMENT, ELEMENT, ENTITY_REF, IGNORABLE_WHITESPACE, PROCESSING_INSTRUCTION, TEXT, types
Constructor and Description |
---|
Document() |
Modifier and Type | Method and Description |
---|---|
void |
addChild(int index,
int type,
java.lang.Object child)
Adds a child at the given index position.
|
java.lang.String |
getEncoding()
returns "#document"
|
java.lang.String |
getName() |
Element |
getRootElement()
returns the root element of this document.
|
java.lang.Boolean |
getStandalone() |
void |
parse(XmlPullParser parser)
reads the document and checks if the last event
is END_DOCUMENT.
|
void |
removeChild(int index)
Removes the child object at the given index
|
void |
setEncoding(java.lang.String enc) |
void |
setStandalone(java.lang.Boolean standalone) |
void |
write(XmlSerializer writer)
Writes this node to the given XmlWriter.
|
addChild, createElement, getChild, getChildCount, getElement, getElement, getText, getType, indexOf, isText, writeChildren
public java.lang.String getEncoding()
public void setEncoding(java.lang.String enc)
public void setStandalone(java.lang.Boolean standalone)
public java.lang.Boolean getStandalone()
public java.lang.String getName()
public void addChild(int index, int type, java.lang.Object child)
public void parse(XmlPullParser parser) throws java.io.IOException, XmlPullParserException
parse
in class Node
java.io.IOException
XmlPullParserException
public void removeChild(int index)
Node
removeChild
in class Node
public Element getRootElement()
public void write(XmlSerializer writer) throws java.io.IOException