Notation Interface

This interface represents a notation declared in the DTD.
IDL Definition

interface Notation : Node {

     readonly attribute  DOMString        pubicId;
     readonly attribute  DOMString        systemId;
};

Semantic Requirements

  1. The nodeName attribute (from the Node interface) contains the name of the notation.
  2. Attributes

  3. The publicId attribute contains the public identifier associated with the notation, if one was specified.
  4. If no public identifier was specified, the publicId attribute is null.
  5. The systemId attribute contains the system identifier associated with the notation, if one was specified.
  6. If no system identifier was specified, the systemId attribute is null.

If you have comments or suggestions, email me at mbrady@nist.gov