Java com.google.gwt.xml.client Document fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.xml.client Document fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.xml.client Document.

The text is from its open source code.

Implementation

com.google.gwt.xml.client.Document has the following implementations.
Click this link to see all its implementation.

Method

CDATASectioncreateCDATASection(String data)
This method creates a new CDATASection.
CommentcreateComment(String data)
This method creates a new Comment.
ElementcreateElement(String tagName)
This method creates a new Element.
ProcessingInstructioncreateProcessingInstruction(String target, String data)
This method creates a new ProcessingInstruction.
TextcreateTextNode(String data)
This method creates a new Text.
ElementgetDocumentElement()
This method retrieves the document element.
NodeListgetElementsByTagName(String tagname)
This method retrieves any descendent elements which have a tag name of tagname.
NodeimportNode(Node importedNode, boolean deep)
This method imports a node into the current Document.