Uses of Interface
com.google.gwt.xml.client.Node
Package
Description
Basic classes used in XML DOM parsing and XML document generation.
-
Uses of Node in com.google.gwt.xml.client
Modifier and TypeInterfaceDescriptioninterface
Attr
objects represent key-value pairs of attributes onElement
objects.interface
This node represents escaped character sequences.interface
This interface describesCharacterData
XML nodes.interface
This interface describes comment XML nodes.interface
Document
objects represent XML documents.interface
ADocumentFragment
is a basket into which one may place otherNode
objects for future processing.interface
This interface represents XML DOM elements, which are the basic building block of XML.interface
This interface represents entity references, such as&foo;
.interface
This interface documents the ProcessingInstruction node type.interface
This interface describes text nodes, as might occur between tags.Modifier and TypeMethodDescriptionNode.appendChild
(Node newChild) This method appends childnewChild
.Node.cloneNode
(boolean deep) This method copies thisNode
.Node.getFirstChild()
This method retrieves the first child.Node.getLastChild()
This method retrieves the last child.NamedNodeMap.getNamedItem
(String name) This method gets the item having the given name.Node.getNextSibling()
This method retrieves the next sibling.Node.getParentNode()
This method retrieves the parent.Node.getPreviousSibling()
This method retrieves the previous sibling.Document.importNode
(Node importedNode, boolean deep) This method imports a node into the currentDocument
.Node.insertBefore
(Node newChild, Node refChild) This method inserts beforenewChild
.NamedNodeMap.item
(int index) This method gets the item at the index position.NodeList.item
(int index) This method gets the item in the position denoted byindex
.Node.removeChild
(Node oldChild) This method removes childoldChild
.Node.replaceChild
(Node newChild, Node oldChild) This method replaces the childoldChild
withnewChild
.Modifier and TypeMethodDescriptionNode.appendChild
(Node newChild) This method appends childnewChild
.Document.importNode
(Node importedNode, boolean deep) This method imports a node into the currentDocument
.Node.insertBefore
(Node newChild, Node refChild) This method inserts beforenewChild
.Node.removeChild
(Node oldChild) This method removes childoldChild
.static void
XMLParser.removeWhitespace
(Node n) This method removes allText
nodes which are made up of only white space.Node.replaceChild
(Node newChild, Node oldChild) This method replaces the childoldChild
withnewChild
.