Uses of Interface
com.google.gwt.xml.client.Node
-
Packages that use Node Package Description com.google.gwt.xml.client 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.client Modifier and Type Interface Description interfaceAttrAttrobjects represent key-value pairs of attributes onElementobjects.interfaceCDATASectionThis node represents escaped character sequences.interfaceCharacterDataThis interface describesCharacterDataXML nodes.interfaceCommentThis interface describes comment XML nodes.interfaceDocumentDocumentobjects represent XML documents.interfaceDocumentFragmentADocumentFragmentis a basket into which one may place otherNodeobjects for future processing.interfaceElementThis interface represents XML DOM elements, which are the basic building block of XML.interfaceEntityReferenceThis interface represents entity references, such as&foo;.interfaceProcessingInstructionThis interface documents the ProcessingInstruction node type.interfaceTextThis interface describes text nodes, as might occur between tags.Methods in com.google.gwt.xml.client that return Node Modifier and Type Method Description NodeNode. appendChild(Node newChild)This method appends childnewChild.NodeNode. cloneNode(boolean deep)This method copies thisNode.NodeNode. getFirstChild()This method retrieves the first child.NodeNode. getLastChild()This method retrieves the last child.NodeNamedNodeMap. getNamedItem(java.lang.String name)This method gets the item having the given name.NodeNode. getNextSibling()This method retrieves the next sibling.NodeNode. getParentNode()This method retrieves the parent.NodeNode. getPreviousSibling()This method retrieves the previous sibling.NodeDocument. importNode(Node importedNode, boolean deep)This method imports a node into the currentDocument.NodeNode. insertBefore(Node newChild, Node refChild)This method inserts beforenewChild.NodeNamedNodeMap. item(int index)This method gets the item at the index position.NodeNodeList. item(int index)This method gets the item in the position denoted byindex.NodeNode. removeChild(Node oldChild)This method removes childoldChild.NodeNode. replaceChild(Node newChild, Node oldChild)This method replaces the childoldChildwithnewChild.Methods in com.google.gwt.xml.client with parameters of type Node Modifier and Type Method Description NodeNode. appendChild(Node newChild)This method appends childnewChild.NodeDocument. importNode(Node importedNode, boolean deep)This method imports a node into the currentDocument.NodeNode. insertBefore(Node newChild, Node refChild)This method inserts beforenewChild.NodeNode. removeChild(Node oldChild)This method removes childoldChild.static voidXMLParser. removeWhitespace(Node n)This method removes allTextnodes which are made up of only white space.NodeNode. replaceChild(Node newChild, Node oldChild)This method replaces the childoldChildwithnewChild.
-