Fixes to some Javadoc errors in ClassUtils
Submitted by:	Janek Bogucki
Reviewed by:	Gary Gregory


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137813 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2004-02-24 06:01:28 +00:00
parent 56de34db0f
commit 687abc5024
1 changed files with 5 additions and 5 deletions

View File

@ -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) {
/**
* <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 @@ public static List getAllSuperclasses(Class cls) {
* 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 @@ public static List convertClassNamesToClasses(List classNames) {
* 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) {