|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use XMLNode | |
com.amx.duet.tools.xml | Provides classes and interfaces for both parsing and writing XML data. |
Uses of XMLNode in com.amx.duet.tools.xml |
Methods in com.amx.duet.tools.xml that return XMLNode | |
XMLNode |
XMLParser.getRootNode()
|
XMLNode |
XMLParser.getNextNode()
Get the next set of tags in the XML file. |
XMLNode |
XMLParser.getNextNode(java.lang.String sTagName)
Get the next set of tags in the XML file that match the tag name passed in. |
XMLNode |
XMLParser.getNode(java.lang.String sTagName)
This method traverses the XML tree from top to bottom until it finds the matching tag name. |
XMLNode |
XMLNode.addTag(XMLNode nodeParent,
Tag tag)
Takes the passed in Tag and adds it adds a leaf to the current node. |
XMLNode |
XMLNode.getNode(int index)
Search through nodes on the same level as this leaf at this index |
XMLNode |
XMLNode.getNode(java.lang.String name)
Search through nodes on the current level for a matching tag name. |
XMLNode |
XMLNode.getNode(Tag tag)
Search through nodes on the current level for a matching tag. |
XMLNode |
XMLNode.getRoot()
Retrieves the root node of the entire node tree no matter where current node's position is. |
XMLNode |
XMLNode.getAbsoluteRoot()
Retrieves the absolute root node of the entire node tree no matter where current node's position is. |
XMLNode |
XMLNode.getNextNode(java.lang.String name)
Recursive search through the node leaves for the matching named tag |
XMLNode |
XMLNode.getNextNode(Tag tag)
Recursive search through the node leaves for the matching tag |
XMLNode |
XMLNode.getParent()
Retrieve the parent node for this node. |
Methods in com.amx.duet.tools.xml with parameters of type XMLNode | |
void |
XMLNode.addNode(XMLNode node)
Adds and entire sub tree as a leaf to the current node |
XMLNode |
XMLNode.addTag(XMLNode nodeParent,
Tag tag)
Takes the passed in Tag and adds it adds a leaf to the current node. |
Constructors in com.amx.duet.tools.xml with parameters of type XMLNode | |
XMLNode(XMLNode nodeParent,
Tag data)
Creates an XML node object with the passed in Tag as its data |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |