Extends the DOM2 Attr
interface with methods for guided document editing.
IDL:
interface AttributeCM : Attr {
AttributeDeclaration getAttributeDeclaration();
CMNotationDeclaration getNotation() raises(dom::DOMException);
};
Java binding:
package org.w3c.dom.contentModel;
public interface AttributeCM extends Attr {
public AttributeDeclaration getAttributeDeclaration();
public CMNotationDeclaration getNotation()
throws DOMException;
}