diff --git a/java/src/org/apache/xml/resolver/CatalogEntry.java b/java/src/org/apache/xml/resolver/CatalogEntry.java index 7490db0..6aaf6f4 100644 --- a/java/src/org/apache/xml/resolver/CatalogEntry.java +++ b/java/src/org/apache/xml/resolver/CatalogEntry.java @@ -219,7 +219,7 @@ public class CatalogEntry { /** * Construct a catalog entry of the specified type. * - * @param name The name of the entry type + * @param type The entry type * @param args A String Vector of arguments * @throws InvalidCatalogEntryTypeException if no such entry type * exists. diff --git a/java/src/org/apache/xml/resolver/CatalogManager.java b/java/src/org/apache/xml/resolver/CatalogManager.java index 34022bd..13bca0c 100644 --- a/java/src/org/apache/xml/resolver/CatalogManager.java +++ b/java/src/org/apache/xml/resolver/CatalogManager.java @@ -464,9 +464,6 @@ public class CatalogManager { /** * Set the relativeCatalogs setting. * - * @return The relativeCatalogs setting from the propertyFile or the - * defaultRelativeCatalogs. - * * @see #getRelativeCatalogs() */ public void setRelativeCatalogs (boolean relative) { @@ -606,8 +603,6 @@ public class CatalogManager { /** * Set the prefer public setting. - * - * @return True if public identifiers are preferred. */ public void setPreferPublic (boolean preferPublic) { this.preferPublic = new Boolean(preferPublic); diff --git a/java/src/org/apache/xml/resolver/helpers/PublicId.java b/java/src/org/apache/xml/resolver/helpers/PublicId.java index dd1df70..0e8dd23 100644 --- a/java/src/org/apache/xml/resolver/helpers/PublicId.java +++ b/java/src/org/apache/xml/resolver/helpers/PublicId.java @@ -140,7 +140,7 @@ public abstract class PublicId { *

This method is declared static so that other classes * can use it directly.

* - * @param publicId The unnormalized public identifier. + * @param urn The urn:publicid: URN * * @return The normalized identifier. */ diff --git a/java/src/org/apache/xml/resolver/readers/TR9401CatalogReader.java b/java/src/org/apache/xml/resolver/readers/TR9401CatalogReader.java index 3dba3a0..bbe1bc2 100644 --- a/java/src/org/apache/xml/resolver/readers/TR9401CatalogReader.java +++ b/java/src/org/apache/xml/resolver/readers/TR9401CatalogReader.java @@ -96,7 +96,8 @@ public class TR9401CatalogReader extends TextCatalogReader { * identifiers. There is no delegate entry for system identifiers * or URIs.

* - * @param fileUrl The URL or filename of the catalog file to process + * @param catalog The Catalog to populate + * @param is The input stream from which to read the TR9401 Catalog * * @throws MalformedURLException Improper fileUrl * @throws IOException Error reading catalog file