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
This commit is contained in:
mrglavas
2005-06-04 03:33:57 +00:00
parent 87899134c1
commit d77f57d180

View File

@@ -269,7 +269,7 @@ public interface Node {
* this node is a <code>Document</code> or a <code>DocumentType</code>
* which is not used with any <code>Document</code> yet, this is
* <code>null</code>.
* @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 <code>DocumentType</code> or
* <code>Element</code> 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 <code>DocumentType</code> child or
* <code>Element</code> 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 <code>DocumentType</code> child or the
* <code>Element</code> 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 <code>Document</code> node, this exception might be raised
* if the DOM implementation doesn't support the removal of the
* <code>DocumentType</code> child or <code>Element</code> child.
* @version DOM Level 3
* @since DOM Level 3
*/
public Node appendChild(Node newChild)
throws DOMException;
@@ -456,7 +456,7 @@ public interface Node {
* <code>CDATASections</code>, the normalize operation alone may not be
* sufficient, since XPointers do not differentiate between
* <code>Text</code> nodes and <code>CDATASection</code> nodes.
* @version DOM Level 3
* @since DOM Level 3
*/
public void normalize();