diff --git a/java/external/src/org/w3c/dom/Node.java b/java/external/src/org/w3c/dom/Node.java index 989d49a..f84cc4f 100644 --- a/java/external/src/org/w3c/dom/Node.java +++ b/java/external/src/org/w3c/dom/Node.java @@ -269,7 +269,7 @@ public interface Node { * this node is a Document or a DocumentType * which is not used with any Document yet, this is * null. - * @version DOM Level 2 + * @since DOM Level 2 */ public Document getOwnerDocument(); @@ -304,7 +304,7 @@ public interface Node { * this exception might be raised if the DOM implementation doesn't * support the insertion of a DocumentType or * Element node. - * @version DOM Level 3 + * @since DOM Level 3 */ public Node insertBefore(Node newChild, Node refChild) @@ -341,7 +341,7 @@ public interface Node { * this exception might be raised if the DOM implementation doesn't * support the replacement of the DocumentType child or * Element child. - * @version DOM Level 3 + * @since DOM Level 3 */ public Node replaceChild(Node newChild, Node oldChild) @@ -360,7 +360,7 @@ public interface Node { * this exception might be raised if the DOM implementation doesn't * support the removal of the DocumentType child or the * Element child. - * @version DOM Level 3 + * @since DOM Level 3 */ public Node removeChild(Node oldChild) throws DOMException; @@ -388,7 +388,7 @@ public interface Node { * of the Document node, this exception might be raised * if the DOM implementation doesn't support the removal of the * DocumentType child or Element child. - * @version DOM Level 3 + * @since DOM Level 3 */ public Node appendChild(Node newChild) throws DOMException; @@ -456,7 +456,7 @@ public interface Node { * CDATASections, the normalize operation alone may not be * sufficient, since XPointers do not differentiate between * Text nodes and CDATASection nodes. - * @version DOM Level 3 + * @since DOM Level 3 */ public void normalize();