Re: Missing native method for GnomeXPathNSResolver.lookupNamespaceURI()
Chris Burdess <[email protected]>
| Newsgroups | gmane.comp.java.classpath.extensions.xml |
|---|---|
| Message-ID | <[email protected]> |
Mark Wielaard wrote:
> Could this simply be solved by the following patch (since we already
> have a GnomeDocument and GnomeNode.lookupNamespaceURI() is
> implemented)?
> Or does that have different semantics?
>
> --- source/gnu/xml/libxmlj/dom/GnomeXPathNSResolver.java 3 Sep
> 2004 11:33:18 -0000 1.3
> +++ source/gnu/xml/libxmlj/dom/GnomeXPathNSResolver.java 27 Dec
> 2004 22:39:00 -0000
> @@ -57,9 +57,6 @@
>
> public String lookupNamespaceURI (String prefix)
> {
> - return lookupNamespaceURI (doc, prefix);
> + return doc.lookupNamespaceURI (prefix);
> }
> -
> - private native String lookupNamespaceURI (GnomeDocument doc, String
> prefix);
> -
> }
It's not quite right, but there is now a fix for it in CVS.
--
Chris Burdess