⇒ Index (Frames) |  ⇒ Index (No Frames) |  ⇒ Package |  ⇒ Package Tree |  ⇒ Full Tree 
gnu.xml.dom

Class DomExtern

java.lang.Object
|
+--gnu.xml.dom.DomNode
   |
   +--gnu.xml.dom.DomExtern

Known Direct Subclasses:
DomDoctype, DomEntity, DomNotation


public abstract class DomExtern
extends DomNode

Abstract implemention of nodes describing external DTD-related objects. This facilitates reusing code for Entity, Notation, and DocumentType (really, external subset) nodes. Such support is not part of the core DOM; it's for the "XML" feature.

Note that you are strongly advised to avoid using the DOM features that take advantage of this class, since (as of L2) none of them is defined fully enough to permit full use of the XML feature they partially expose.

Author:
David Brownell

Method Summary

java.lang.String

getNodeName()

DOM L1 Returns the object's name.

java.lang.String

getPublicId()

DOM L1 Returns the PUBLIC identifier associated with this object, if any.

java.lang.String

getSystemId()

DOM L1 Returns the SYSTEM identifier associated with this object, if any.

Method Details

getNodeName

public final String getNodeName()

DOM L1 Returns the object's name.


getPublicId

public final String getPublicId()

DOM L1 Returns the PUBLIC identifier associated with this object, if any.


getSystemId

public final String getSystemId()

DOM L1 Returns the SYSTEM identifier associated with this object, if any.