From 965096e21c68f2069b5c1aab7c03d4c79275bd22 Mon Sep 17 00:00:00 2001 From: Benedikt Ritter Date: Fri, 11 Oct 2013 21:27:50 +0000 Subject: [PATCH] Add missing JavaDoc git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1531426 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/lang3/ClassUtils.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/ClassUtils.java b/src/main/java/org/apache/commons/lang3/ClassUtils.java index c15636ed9..940cc82b2 100644 --- a/src/main/java/org/apache/commons/lang3/ClassUtils.java +++ b/src/main/java/org/apache/commons/lang3/ClassUtils.java @@ -1140,8 +1140,8 @@ public class ClassUtils { * Get an {@link Iterable} that can iterate over a class hierarchy in ascending (subclass to superclass) order, * excluding interfaces. * - * @param type - * @return Iterable + * @param type the type to get the class hierarchy from + * @return Iterable an Iterable over the class hierarchy of the given class */ public static Iterable> hierarchy(final Class type) { return hierarchy(type, Interfaces.EXCLUDE); @@ -1150,9 +1150,9 @@ public class ClassUtils { /** * Get an {@link Iterable} that can iterate over a class hierarchy in ascending (subclass to superclass) order. * - * @param type - * @param interfacesBehavior - * @return Iterable + * @param type the type to get the class hierarchy from + * @param interfacesBehavior switch indicating whether to include or exclude interfaces + * @return Iterable an Iterable over the class hierarchy of the given class */ public static Iterable> hierarchy(final Class type, Interfaces interfacesBehavior) { final Iterable> classes = new Iterable>() {