deweese 01/10/15 07:50:23 Modified: sources/org/apache/batik/bridge URIResolver.java Log: 1) Synced JavaDocs with Implementation. Revision Changes Path 1.11 +12 -4 xml-batik/sources/org/apache/batik/bridge/URIResolver.java Index: URIResolver.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/bridge/URIResolver.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- URIResolver.java 2001/10/12 07:33:09 1.10 +++ URIResolver.java 2001/10/15 14:50:23 1.11 @@ -28,7 +28,7 @@ * This class is used to resolve the URI that can be found in a SVG document. * * @author <a href="mailto:[EMAIL PROTECTED]">Stephane Hillion</a> - * @version $Id: URIResolver.java,v 1.10 2001/10/12 07:33:09 hillion Exp $ + * @version $Id: URIResolver.java,v 1.11 2001/10/15 14:50:23 deweese Exp $ */ public class URIResolver { /** @@ -57,8 +57,12 @@ } /** - * Imports the element referenced by the given URI. + * Imports the Element referenced by the given URI on Element + * <tt>ref</tt>. * @param uri The element URI. + * @param ref The Element in the DOM tree to evaluate <tt>uri</tt> + * from. + * @return The referenced element or null if element can't be found. */ public Element getElement(String uri, Element ref) throws MalformedURLException, IOException { @@ -73,8 +77,12 @@ } /** - * Returns the node referenced by the given URI on element ref. - * @return The document or the element + * Imports the Node referenced by the given URI on Element + * <tt>ref</tt>. + * @param uri The element URI. + * @param ref The Element in the DOM tree to evaluate <tt>uri</tt> + * from. + * @return The referenced Node/Document or null if element can't be found. */ public Node getNode(String uri, Element ref) throws MalformedURLException, IOException {
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]