From d77f57d1808c763e1cf195696ca0ef4d0f8728cb Mon Sep 17 00:00:00 2001 From: mrglavas Date: Sat, 4 Jun 2005 03:33:57 +0000 Subject: [PATCH] Applying a Javadoc fix which was overwritten by the previous commit. See version 1.5. git-svn-id: https://svn.apache.org/repos/asf/xml/commons/trunk@226220 13f79535-47bb-0310-9956-ffa450edef68 --- java/external/src/org/w3c/dom/Node.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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();