Represents a declaration of a notation; e.g.
<!NOTATION TXT SYSTEM "text/plain">
IDL:
interface CMNotationDeclaration {
attribute DOMString strSystemIdentifier;
attribute DOMString strPublicIdentifier;
};
Java binding:
package org.w3c.dom.contentModel;
public interface CMNotationDeclaration {
public String getStrSystemIdentifier();
public void setStrSystemIdentifier(String strSystemIdentifier);
public String getStrPublicIdentifier();
public void setStrPublicIdentifier(String strPublicIdentifier);
}