Class Entity

Node
  |
  +--Entity

public class Entity
extends Node

Class representing the DOM Entity interface. Not supported yet.


Field Summary
private  string $notationName
          If the entity is unparsed, notationName is the entity's notation name.
private  string $publicId
          Die public identifier URL (URI) for this entity.
DOM-Level 1
private  string $systemId
          Die system identifier URL (URI) for this entity.
DOM-Level 1
 
Fields inherited from class Node
$attributes, $childNodes, $firstChild, $lastChild, $localName, $namespaceURI, $nextSibling, $nodeID, $nodeName, $nodeType, $nodeValue, $ownerDocument, $parentNode, $prefix, $previousSibling, $readonly
 
Constructor Summary
Entity()
          Constructor of the class.
 
Method Summary
 unknown getNotationName()
          Returns the notation name of this entity if unparsed.
 unknown getPublicId()
          Returns the public identifier URL.
 unknown getSystemId()
          Returns the system identifier URL.
 
Methods inherited from class Node
appendChild, checkDocument, checkHierarchy, cloneNode, cloneNode, getAttributes, getChildNodes, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, hasAttributes, hasChildNodes, insertBefore, isSupported, normalize, removeChild, replaceChild, setNodeValue, setPrefix
 

Field Detail

$notationName

private string $notationName
If the entity is unparsed, notationName is the entity's notation name. For parsed entities , this attribute is null.
DOM-Level 1

$publicId

private string $publicId
Die public identifier URL (URI) for this entity.
DOM-Level 1

$systemId

private string $systemId
Die system identifier URL (URI) for this entity.
DOM-Level 1
Constructor Detail

Entity

public Entity()
Constructor of the class.
Method Detail

getNotationName

public unknown getNotationName()
Returns the notation name of this entity if unparsed.
Returns:
string

getPublicId

public unknown getPublicId()
Returns the public identifier URL.
Returns:
string

getSystemId

public unknown getSystemId()
Returns the system identifier URL.
Returns:
string