All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.w3c.dom.Document

public interface Document
extends DocumentFragment

Method Index

 o createAttribute(String, Node)
 o createAttributeList()
 o createComment(String)
 o createDocumentContext()
 o createElement(String, AttributeList)
 o createPI(String, String)
 o createTextNode(String)
 o getContextInfo()
 o getDocumentElement()
 o getDocumentType()
 o getElementsByTagName()
 o setContextInfo(DocumentContext)
 o setDocumentElement(Element)
 o setDocumentType(Node)

Methods

 o getDocumentType
 public abstract Node getDocumentType()
 o setDocumentType
 public abstract void setDocumentType(Node arg)
 o getDocumentElement
 public abstract Element getDocumentElement()
 o setDocumentElement
 public abstract void setDocumentElement(Element arg)
 o getContextInfo
 public abstract DocumentContext getContextInfo()
 o setContextInfo
 public abstract void setContextInfo(DocumentContext arg)
 o createDocumentContext
 public abstract DocumentContext createDocumentContext()
 o createElement
 public abstract Element createElement(String tagName,
                                       AttributeList attributes)
 o createTextNode
 public abstract Text createTextNode(String data)
 o createComment
 public abstract Comment createComment(String data)
 o createPI
 public abstract PI createPI(String name,
                             String data)
 o createAttribute
 public abstract Attribute createAttribute(String name,
                                           Node value)
 o createAttributeList
 public abstract AttributeList createAttributeList()
 o getElementsByTagName
 public abstract NodeIterator getElementsByTagName()

All Packages  Class Hierarchy  This Package  Previous  Next  Index