Uses of Class
gw.xml.simple.SimpleXmlNode
Packages that use SimpleXmlNode
-
Uses of SimpleXmlNode in gw.test
Methods in gw.test that return SimpleXmlNodeMethods in gw.test with parameters of type SimpleXmlNodeModifier and TypeMethodDescriptionstatic TestMetadata
TestMetadata.deserializeXml
(SimpleXmlNode xml) -
Uses of SimpleXmlNode in gw.xml.simple
Classes in gw.xml.simple with type parameters of type SimpleXmlNodeFields in gw.xml.simple declared as SimpleXmlNodeModifier and TypeFieldDescriptionprivate T
XmlChildList.WrappingIterator._lastRet
private T
XmlChildList.WrappingListIterator._lastRet
private SimpleXmlNode
XmlChildList._owner
private SimpleXmlNode
SimpleXmlNode._parent
private SimpleXmlNode
SimpleXmlNodeHandler._root
Fields in gw.xml.simple with type parameters of type SimpleXmlNodeModifier and TypeFieldDescriptionprivate List<SimpleXmlNode>
SimpleXmlNode._children
private Stack<SimpleXmlNode>
SimpleXmlNodeHandler._elementStack
private Stack<Iterator<SimpleXmlNode>>
DescendentsIterator._iterators
Methods in gw.xml.simple that return SimpleXmlNodeModifier and TypeMethodDescriptionSimpleXmlNode.deepCopy()
Makes a deep copy of this node, including copies of all contained children.SimpleXmlNode.getParent()
Returns the parent of this node, or null if this node is a root node.SimpleXmlNodeHandler.getRoot()
DescendentsIterator.next()
static SimpleXmlNode
Parse the given File to create a SimpleXmlNode.static SimpleXmlNode
SimpleXmlNode.parse
(InputStream is) Parse the given InputStream to create a SimpleXmlNode.static SimpleXmlNode
Parse the given String to create a SimpleXmlNode.static SimpleXmlNode
static SimpleXmlNode
SimpleXmlParser.parseInputStream
(InputStream stream) static SimpleXmlNode
SimpleXmlParser.parseString
(String s) SimpleXmlNode.shallowCopy()
Makes a shallow copy of this node, including its name, text, and attributes.Methods in gw.xml.simple that return types with arguments of type SimpleXmlNodeModifier and TypeMethodDescriptionSimpleXmlNode.getChildren()
Returns the immediate children of this node.SimpleXmlNode.getDescendents()
Returns an Iterable over the descendents of this node (not including this node).Methods in gw.xml.simple with parameters of type SimpleXmlNodeModifier and TypeMethodDescriptionprivate void
SimpleXmlNodeWriter.appendAttributes
(SimpleXmlNode node) private void
SimpleXmlNodeWriter.appendChildren
(SimpleXmlNode node) private void
SimpleXmlNodeWriter.appendNode
(SimpleXmlNode node) private String
SimpleXmlNodeWriter.createXml
(SimpleXmlNode node) (package private) void
SimpleXmlNode.setParent
(SimpleXmlNode parent) static String
SimpleXmlNodeWriter.writeToString
(SimpleXmlNode node) Constructors in gw.xml.simple with parameters of type SimpleXmlNode