diff --git a/src/java/org/apache/commons/lang/ClassUtils.java b/src/java/org/apache/commons/lang/ClassUtils.java index d65726a07..160a750bd 100644 --- a/src/java/org/apache/commons/lang/ClassUtils.java +++ b/src/java/org/apache/commons/lang/ClassUtils.java @@ -32,7 +32,7 @@ * @author Gary Gregory * @author Norm Deane * @since 2.0 - * @version $Id: ClassUtils.java,v 1.27 2004/02/19 01:34:38 scolebourne Exp $ + * @version $Id: ClassUtils.java,v 1.28 2004/02/24 06:01:28 ggregory Exp $ */ public class ClassUtils { @@ -196,7 +196,7 @@ public static String getPackageName(String className) { /** *

Gets a List of superclasses for the given class.

* - * @param cls the class to look up, must not be null + * @param cls the class to look up, may be null * @return the List of superclasses in order going up from this one * null if null input */ @@ -222,7 +222,7 @@ public static List getAllSuperclasses(Class cls) { * superclass is considered in the same way. Later duplicates are ignored, * so the order is maintained.

* - * @param cls the class to look up, must not be null + * @param cls the class to look up, may be null * @return the List of interfaces in order, * null if null input */ @@ -341,9 +341,9 @@ public static List convertClassNamesToClasses(List classNames) { * the returned list as null.

* * @param classes the classes to change - * @return a List of Class objects corresponding to the class names, + * @return a List of class names corresponding to the Class objects, * null if null input - * @throws ClassCastException if classNames contains a non Class or null entry + * @throws ClassCastException if classes contains a non-Class entry */ public static List convertClassesToClassNames(List classes) { if (classes == null) {