Пример #1
0
 /**
  * Gets the Document associated with this Node.
  *
  * @return the Document associated with this Node, or null if there is no such Document.
  */
 public Document ownerDocument() {
   if (this instanceof Document) return (Document) this;
   else if (parentNode == null) return null;
   else return parentNode.ownerDocument();
 }