ggregory 2004/02/23 22:01:28 Modified: lang/src/java/org/apache/commons/lang ClassUtils.java Log:
PR: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27054 Fixes to some Javadoc errors in ClassUtils Submitted by: Janek Bogucki Reviewed by: Gary Gregory Revision Changes Path 1.28 +5 -5 jakarta-commons/lang/src/java/org/apache/commons/lang/ClassUtils.java Index: ClassUtils.java =================================================================== RCS file: /home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/ClassUtils.java,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- ClassUtils.java 19 Feb 2004 01:34:38 -0000 1.27 +++ ClassUtils.java 24 Feb 2004 06:01:28 -0000 1.28 @@ -196,7 +196,7 @@ /** * <p>Gets a <code>List</code> of superclasses for the given class.</p> * - * @param cls the class to look up, must not be <code>null</code> + * @param cls the class to look up, may be <code>null</code> * @return the <code>List</code> of superclasses in order going up from this one * <code>null</code> if null input */ @@ -222,7 +222,7 @@ * superclass is considered in the same way. Later duplicates are ignored, * so the order is maintained.</p> * - * @param cls the class to look up, must not be <code>null</code> + * @param cls the class to look up, may be <code>null</code> * @return the <code>List</code> of interfaces in order, * <code>null</code> if null input */ @@ -341,9 +341,9 @@ * the returned list as <code>null</code>.</p> * * @param classes the classes to change - * @return a <code>List</code> of Class objects corresponding to the class names, + * @return a <code>List</code> of class names corresponding to the Class objects, * <code>null</code> if null input - * @throws ClassCastException if classNames contains a non Class or null entry + * @throws ClassCastException if <code>classes</code> contains a non-<code>Class</code> entry */ public static List convertClassesToClassNames(List classes) { if (classes == null) { --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
