org.apache.xerces.dom3
Interface Entity3

All Superinterfaces:
org.w3c.dom.Entity, org.w3c.dom.Node

public interface Entity3
extends org.w3c.dom.Entity

The Entity3 interface is an extension to the DOM Level 2 Entity interface containing the DOM Level 3 additions.

See also the Document Object Model (DOM) Level 3 Core Specification.


Fields inherited from interface org.w3c.dom.Node
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE
 
Method Summary
 java.lang.String getActualEncoding()
          An attribute specifying the actual encoding of this entity, when it is an external parsed entity.
 java.lang.String getEncoding()
          An attribute specifying, as part of the text declaration, the encoding of this entity, when it is an external parsed entity.
 java.lang.String getVersion()
          An attribute specifying, as part of the text declaration, the version number of this entity, when it is an external parsed entity.
 void setActualEncoding(java.lang.String actualEncoding)
          An attribute specifying the actual encoding of this entity, when it is an external parsed entity.
 void setEncoding(java.lang.String encoding)
          An attribute specifying, as part of the text declaration, the encoding of this entity, when it is an external parsed entity.
 void setVersion(java.lang.String version)
          An attribute specifying, as part of the text declaration, the version number of this entity, when it is an external parsed entity.
 
Methods inherited from interface org.w3c.dom.Entity
getNotationName, getPublicId, getSystemId
 
Methods inherited from interface org.w3c.dom.Node
appendChild, cloneNode, getAttributes, getChildNodes, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, hasAttributes, hasChildNodes, insertBefore, isSupported, normalize, removeChild, replaceChild, setNodeValue, setPrefix
 

Method Detail

getActualEncoding

public java.lang.String getActualEncoding()
An attribute specifying the actual encoding of this entity, when it is an external parsed entity. This is null otherwise.
Since:
DOM Level 3

setActualEncoding

public void setActualEncoding(java.lang.String actualEncoding)
An attribute specifying the actual encoding of this entity, when it is an external parsed entity. This is null otherwise.
Since:
DOM Level 3

getEncoding

public java.lang.String getEncoding()
An attribute specifying, as part of the text declaration, the encoding of this entity, when it is an external parsed entity. This is null otherwise.
Since:
DOM Level 3

setEncoding

public void setEncoding(java.lang.String encoding)
An attribute specifying, as part of the text declaration, the encoding of this entity, when it is an external parsed entity. This is null otherwise.
Since:
DOM Level 3

getVersion

public java.lang.String getVersion()
An attribute specifying, as part of the text declaration, the version number of this entity, when it is an external parsed entity. This is null otherwise.
Since:
DOM Level 3

setVersion

public void setVersion(java.lang.String version)
An attribute specifying, as part of the text declaration, the version number of this entity, when it is an external parsed entity. This is null otherwise.
Since:
DOM Level 3


Copyright © 1999-2002 Apache XML Project. All Rights Reserved.