diff options
Diffstat (limited to 'libjava/classpath/gnu/xml/libxmlj/dom/GnomeNode.java')
-rw-r--r-- | libjava/classpath/gnu/xml/libxmlj/dom/GnomeNode.java | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/libjava/classpath/gnu/xml/libxmlj/dom/GnomeNode.java b/libjava/classpath/gnu/xml/libxmlj/dom/GnomeNode.java index 6f574ec29dd..5874916e594 100644 --- a/libjava/classpath/gnu/xml/libxmlj/dom/GnomeNode.java +++ b/libjava/classpath/gnu/xml/libxmlj/dom/GnomeNode.java @@ -1,4 +1,4 @@ -/* GnomeNode.java - +/* GnomeNode.java - Copyright (C) 2004 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -145,7 +145,7 @@ class GnomeNode docNodes.put(node, nodeInstance); return nodeInstance; } - + /** * Frees the specified document. * This removes all its nodes from the cache. @@ -159,7 +159,7 @@ class GnomeNode instances.remove(doc); //System.out.println("Freed "+instances.remove(doc)); } - + /** * xmlNodePtr */ @@ -302,7 +302,7 @@ class GnomeNode notifyUserDataHandlers(UserDataHandler.NODE_CLONED, this, ret); return ret; } - + private native Node xmljCloneNode(boolean deep); public native void normalize(); @@ -359,7 +359,7 @@ class GnomeNode } private native int xmljCompareTo(Object other); - + public String getTextContent() throws DOMException { @@ -392,7 +392,7 @@ class GnomeNode return null; } } - + public void setTextContent(String textContent) throws DOMException { @@ -427,20 +427,20 @@ class GnomeNode break; } } - + public boolean isSameNode(Node other) { return equals(other); } - + public native String lookupPrefix(String namespaceURI); - + public native boolean isDefaultNamespace(String namespaceURI); - + public native String lookupNamespaceURI(String prefix); - + public native boolean isEqualNode(Node arg); - + public Object getFeature(String feature, String version) { return getOwnerDocument().getImplementation() |