Package | Description |
---|---|
er.xiss |
Modifier and Type | Class and Description |
---|---|
static class |
ERXML.CDATA
CDATA represents a CDATA section of your document.
|
static class |
ERXML.Comment
Comment represents a Comment section of the document.
|
static class |
ERXML.Content
Content is the abstract superclass of all Nodes that have text content.
|
static class |
ERXML.Declaration
Declaration represents an XML declaration (the <? ...
|
static class |
ERXML.Doc
Doc represents the top level XML Document object, and is typically the first object you will make when building.
|
static class |
ERXML.E
E represents an element of the XML document, which can
have attributes and children nodes.
|
static class |
ERXML.Node
Node is the abstract superclass of all Node items in a Document.
|
static class |
ERXML.Text
Text represents a bare text node.
|
Modifier and Type | Method and Description |
---|---|
<T extends ERXML.Item> |
ERXML.Doc.add(T child)
Adds a new child to this document.
|
Modifier and Type | Method and Description |
---|---|
ERXML.Item |
ERXML.Item.parent()
Returns the parent of this item, or null if there isn't one.
|
Modifier and Type | Method and Description |
---|---|
List<ERXML.Item> |
ERXML.Doc.children()
Returns the children of this document.
|
Modifier and Type | Method and Description |
---|---|
protected void |
ERXML.Doc._add(ERXML.Item child)
Adds a new child to this document.
|
static ERXML.Doc |
ERXML.doc(ERXML.Item... children)
Creates and returns a new Document.
|
void |
ERXML.Doc.remove(ERXML.Item child)
Removes the given child from this document.
|
protected void |
ERXML.Item.setParent(ERXML.Item parent)
Sets the parent of the this item.
|
boolean |
ERXML.Visitor.visit(ERXML.Item item)
Called by the visit method of each item.
|
Copyright © 2002 – 2024 Project Wonder.