JavaScript API Reference for Oracle ADF Faces
Oracle Fusion Middleware JavaScript API Reference for Oracle ADF Faces
11g Release 2 (11.1.2.0.0)
E17489-01
PREV NEXT
FRAMES NO FRAMES All Classes Warning: private items are visible
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
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
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.
public String name
The name of DTD; i.e., the name immediately following the DOCTYPE keyword.
This is a readonly attribute
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
public String publicId
The public identifier of the external subset.
This is a readonly attribute
Introduced in DOM Level 2.
public String systemId
The system identifier of the external subset.
This is a readonly attribute
Introduced in DOM Level 2.
Oracle Fusion Middleware JavaScript API Reference for Oracle ADF Faces
11g Release 2 (11.1.2.0.0)
E17489-01
PREV NEXT
FRAMES NO FRAMES All Classes Warning: private items are visible
Generated on 2011.04.27 02:28 UTC
Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.