Add missing JavaDoc

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1531426 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-10-11 21:27:50 +00:00
parent b2ad5e80bb
commit 965096e21c
1 changed files with 5 additions and 5 deletions

View File

@ -1140,8 +1140,8 @@ private static String getCanonicalName(String className) {
* 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<Class<?>> hierarchy(final Class<?> type) {
return hierarchy(type, Interfaces.EXCLUDE);
@ -1150,9 +1150,9 @@ public static Iterable<Class<?>> hierarchy(final Class<?> type) {
/**
* 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<Class<?>> hierarchy(final Class<?> type, Interfaces interfacesBehavior) {
final Iterable<Class<?>> classes = new Iterable<Class<?>>() {