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

Class DomExtern

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


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:

Method Summary

java.lang.StringgetNodeName()

DOM L1 Returns the object's name.
java.lang.StringgetPublicId()

DOM L1 Returns the PUBLIC identifier associated with this object, if any.
java.lang.StringgetSystemId()

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.