package org.w3c.dom;

public interface Document extends Node
{

 public Element createElementNS(String string_1, String string_2) throws DOMException;
 
 public Element getDocumentElement();
 
 public Element getElementById(String string_1);
 
}