Package | Description |
---|---|
com.b3dgs.lionengine.file |
Modifier and Type | Method and Description |
---|---|
static XmlNode |
File.createXmlNode(java.lang.String name)
Create an XML node from a name.
|
XmlNode |
XmlNode.getChild(java.lang.String name)
Get a child node from its name.
|
XmlNode |
XmlParser.load(Media media)
Load an XML file.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<XmlNode> |
XmlNode.getChildren()
Get list of all children.
|
java.util.List<XmlNode> |
XmlNode.getChildren(java.lang.String name)
Get the list of all children with this name.
|
Modifier and Type | Method and Description |
---|---|
void |
XmlNode.add(XmlNode node)
Add a child node.
|
void |
XmlParser.save(XmlNode root,
Media media)
Save an XML tree to a file.
|