Adds:
schemaTypeInfoTypeInfo object
      that provides a name and  URI for the element's type,
      as given in the document's schema.
     setIdAttributeJava binding:
package org.w3c.dom;
  
public interface Element extends Node {
  
  public TypeInfo getSchemaTypeInfo();
  public void setIdAttribute(String name, boolean isId) throws DOMException;
  public void setIdAttributeNS(String namespaceURI, String localName, boolean isId) throws DOMException;
  public void setIdAttributeNode(Attr idAttr, boolean isId) throws DOMException;
}