Represents a declaration of a notation; e.g.
<!NOTATION TXT SYSTEM "text/plain">
Java binding:
package org.w3c.dom.abstractSchemas;
public interface ASNotationDeclaration extends ASNode {
  public String getNotationName();
  public void   setNotationName(String notationName);
  public String getSystemId();
  public void   setSystemId(String systemId);
  public String getPublicId();
  public void   setPublicId(String publicId);
}
IDL:
interface ASNotationDeclaration : ASNode {
  attribute DOMString notationName;
  attribute DOMString systemId;
  attribute DOMString publicId;
  
};