package org.w3c.dom;

public interface Node
{

 public Node appendChild(Node) throws DOMException;
 
 public String getLocalName();
 
 public String getNamespaceURI();
 
 public Node getParentNode();
 
 public Node insertBefore(Node, Node) throws DOMException;
 
 public Node removeChild(Node) throws DOMException;
 
}