Extends the DOM2 Attr 
  interface with  methods for guided document editing.
Java binding:
package org.w3c.dom.abstractSchemas;
import org.w3c.dom.DOMException;
import org.w3c.dom.Attr;
public interface AttributeAS extends Attr {
  public ASAttributeDeclaration getAttributeDeclaration();
  public ASNotationDeclaration getNotation() throws DOMException;
}
IDL:
interface AttributeAS : Attr {
  ASAttributeDeclaration getAttributeDeclaration();
  ASNotationDeclaration getNotation() raises(DOMException);
};