BEA Systems, Inc.

com.beasys.commerce.util.dom
Class EntityImpl

java.lang.Object
  |
  +--com.beasys.commerce.util.dom.DOMBase
        |
        +--com.beasys.commerce.util.dom.NodeImpl
              |
              +--com.beasys.commerce.util.dom.EntityImpl

public class EntityImpl
extends NodeImpl
implements org.w3c.dom.Entity

An implementation of the W3C's DOM Entity object.

There are generally only created at the same time that a DocumentType is created.

See Also:
Serialized Form

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
 
Constructor Summary
EntityImpl(org.w3c.dom.Document owner, java.lang.String name, java.lang.String publicId, java.lang.String systemId, java.lang.String notationName)
          Constructor.
 
Method Summary
 org.w3c.dom.Node cloneNode()
          Clone this node.
 java.lang.String getNodeName()
          Get the node/entity name.
 short getNodeType()
          Return Node.ENTITY_NODE.
 java.lang.String getNotationName()
          Get the notation name.
 java.lang.String getPublicId()
          Get the public id.
 java.lang.String getSystemId()
          Get the system id.
 void setNodeName(java.lang.String name)
          Set the node/entity name.
 void setNotationName(java.lang.String notationName)
          Set the notation name.
 void setPublicId(java.lang.String publicId)
          Set the public id.
 void setSystemId(java.lang.String systemId)
          Set the system id.
 
Methods inherited from class com.beasys.commerce.util.dom.NodeImpl
appendChild, cloneNode, getAttributes, getChildNodes, getFirstChild, getLastChild, getNextSibling, getNodeType, getNodeValue, getParentNode, getPreviousSibling, hasChildNodes, insertBefore, removeChild, replaceChild, setNodeValue, setParentNode
 
Methods inherited from class com.beasys.commerce.util.dom.DOMBase
checkOwnerDocument, getOwnerDocument, isReadOnly, setReadOnly
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EntityImpl

public EntityImpl(org.w3c.dom.Document owner,
                  java.lang.String name,
                  java.lang.String publicId,
                  java.lang.String systemId,
                  java.lang.String notationName)
Constructor.
Method Detail

cloneNode

public org.w3c.dom.Node cloneNode()
Clone this node.
Overrides:
cloneNode in class NodeImpl

getNodeType

public short getNodeType()
Return Node.ENTITY_NODE.
Overrides:
getNodeType in class NodeImpl

getNodeName

public java.lang.String getNodeName()
Get the node/entity name.
Overrides:
getNodeName in class NodeImpl

setNodeName

public void setNodeName(java.lang.String name)
Set the node/entity name.

getPublicId

public java.lang.String getPublicId()
Get the public id.
Specified by:
getPublicId in interface org.w3c.dom.Entity

setPublicId

public void setPublicId(java.lang.String publicId)
Set the public id.

getSystemId

public java.lang.String getSystemId()
Get the system id.
Specified by:
getSystemId in interface org.w3c.dom.Entity

setSystemId

public void setSystemId(java.lang.String systemId)
Set the system id.

getNotationName

public java.lang.String getNotationName()
Get the notation name.
Specified by:
getNotationName in interface org.w3c.dom.Entity

setNotationName

public void setNotationName(java.lang.String notationName)
Set the notation name.

BEA Systems, Inc.

Copyright © 2000 BEA Systems, Inc. All Rights Reserved