OracleJavaScript API Reference for Oracle ADF Faces

 

SUMMARY: FIELD | CONSTR | METHOD    DETAIL: FIELD | CONSTR | METHOD

org.w3c.dom.core
Class DocumentType

org.ecmascript.object.Object
   |
   +--org.w3c.dom.core.Node
         |
         +--org.w3c.dom.core.DocumentType

public abstract class DocumentType
extends Node
Each Document has a doctype attribute whose value is either null or a DocumentType object. The DocumentType interface in the DOM Core provides an interface to the list of entities that are defined for the document, and little else because the effect of namespaces and the various XML schema efforts on DTD representation are not clearly understood as of this writing.

The DOM Level 2 doesn't support editing DocumentType nodes.

Note that this object is implemented and supported by the web browser and results of its use may vary.



Field Summary

public NamedNodeMap
entities
A NamedNodeMap containing the general entities, both external and internal, declared in the DTD.
public String
internalSubset
The internal subset as a string, or null if there is none.
public String
name
The name of DTD; i.e., the name immediately following the DOCTYPE keyword.
public NamedNodeMap
notations
A NamedNodeMap containing the notations declared in the DTD.
public String
publicId
The public identifier of the external subset.
public String
systemId
The system identifier of the external subset.


Fields inherited from org.w3c.dom.core.Node

ATTRIBUTE_NODE, attributes, CDATA_SECTION_NODE, childNodes, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, firstChild, lastChild, localName, namespaceURI, nextSibling, nodeName, nodeType, nodeValue, NOTATION_NODE, ownerDocument, parentNode, prefix, previousSibling, PROCESSING_INSTRUCTION_NODE, TEXT_NODE


Fields inherited from org.ecmascript.object.Object

constructor, prototype


Method Summary


Methods inherited from org.w3c.dom.core.Node

appendChild, cloneNode, hasAttributes, hasChildNodes, insertBefore, isSupported, normalize, removeChild, replaceChild


Field Detail


entities

public NamedNodeMap entities

A NamedNodeMap containing the general entities, both external and internal, declared in the DTD. Parameter entities are not contained. Duplicates are discarded.

This is a readonly attribute

internalSubset

public String internalSubset

The internal subset as a string, or null if there is none.

This is a readonly attribute

Introduced in DOM Level 2.

name

public String name

The name of DTD; i.e., the name immediately following the DOCTYPE keyword.

This is a readonly attribute

notations

public NamedNodeMap notations

A NamedNodeMap containing the notations declared in the DTD. Duplicates are discarded. Every node in this map also implements the Notation interface.

This is a readonly attribute

publicId

public String publicId

The public identifier of the external subset.

This is a readonly attribute

Introduced in DOM Level 2.

systemId

public String systemId

The system identifier of the external subset.

This is a readonly attribute

Introduced in DOM Level 2.

Method Detail


SUMMARY: FIELD | CONSTR | METHOD    DETAIL: FIELD | CONSTR | METHOD

 

Generated on 2010.12.10 19:37 UTC
Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.