Uses of Interface
com.google.gwt.xml.client.Node
Packages that use Node
Package
Description
Basic classes used in XML DOM parsing and XML document generation.
-
Uses of Node in com.google.gwt.xml.client
Subinterfaces of Node in com.google.gwt.xml.clientModifier and TypeInterfaceDescriptioninterfaceAttrobjects represent key-value pairs of attributes onElementobjects.interfaceThis node represents escaped character sequences.interfaceThis interface describesCharacterDataXML nodes.interfaceThis interface describes comment XML nodes.interfaceDocumentobjects represent XML documents.interfaceADocumentFragmentis a basket into which one may place otherNodeobjects for future processing.interfaceThis interface represents XML DOM elements, which are the basic building block of XML.interfaceThis interface represents entity references, such as&foo;.interfaceThis interface documents the ProcessingInstruction node type.interfaceThis interface describes text nodes, as might occur between tags.Methods in com.google.gwt.xml.client that return NodeModifier 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 childoldChildwithnewChild.Methods in com.google.gwt.xml.client with parameters of type NodeModifier 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 voidXMLParser.removeWhitespace(Node n) This method removes allTextnodes which are made up of only white space.Node.replaceChild(Node newChild, Node oldChild) This method replaces the childoldChildwithnewChild.