| Package | Description |
|---|---|
| gw.xml.simple |
| Modifier and Type | Method and Description |
|---|---|
SimpleXmlNode |
SimpleXmlNode.deepCopy()
Makes a deep copy of this node, including copies of all contained children.
|
SimpleXmlNode |
SimpleXmlNode.getParent()
Returns the parent of this node, or null if this node is a root node.
|
static SimpleXmlNode |
SimpleXmlNode.parse(File f)
Parse the given File to create a SimpleXmlNode.
|
static SimpleXmlNode |
SimpleXmlNode.parse(InputStream is)
Parse the given InputStream to create a SimpleXmlNode.
|
static SimpleXmlNode |
SimpleXmlNode.parse(String s)
Parse the given String to create a SimpleXmlNode.
|
static SimpleXmlNode |
SimpleXmlParser.parseFile(File file) |
static SimpleXmlNode |
SimpleXmlParser.parseInputStream(InputStream stream) |
static SimpleXmlNode |
SimpleXmlParser.parseString(String s) |
SimpleXmlNode |
SimpleXmlNode.shallowCopy()
Makes a shallow copy of this node, including its name, text, and attributes.
|
| Modifier and Type | Method and Description |
|---|---|
List<SimpleXmlNode> |
SimpleXmlNode.getChildren()
Returns the immediate children of this node.
|
Iterable<SimpleXmlNode> |
SimpleXmlNode.getDescendents()
Returns an Iterable over the descendents of this node (not including this node).
|
| Modifier and Type | Method and Description |
|---|---|
static String |
SimpleXmlNodeWriter.writeToString(SimpleXmlNode node) |
Copyright © 2017. All rights reserved.