Add missing param tags

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1534770 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-10-22 20:19:25 +00:00
parent 45273917dc
commit b86d8184a0
1 changed files with 18 additions and 17 deletions

View File

@ -1258,7 +1258,7 @@ public static Type getArrayComponentType(final Type type) {
* Get a type representing {@code type} with variable assignments "unrolled."
*
* @param typeArguments as from {@link TypeUtils#getTypeArguments(Type, Class)}
* @param type
* @param type the type to unroll variable assignments for
* @return Type
*/
public static Type unrollVariables(Map<TypeVariable<?>, Type> typeArguments, final Type type) {
@ -1313,7 +1313,7 @@ private static Type[] unrollBounds(final Map<TypeVariable<?>, Type> typeArgument
/**
* Learn, recursively, whether any of the type parameters associated with {@code type} are bound to variables.
*
* @param type
* @param type the type to check for type variables
* @return boolean
*/
public static boolean containsTypeVariables(Type type) {
@ -1342,8 +1342,8 @@ public static boolean containsTypeVariables(Type type) {
/**
* Create a parameterized type instance.
*
* @param raw
* @param typeArguments
* @param raw the raw class to create a parameterized type instance for
* @param typeArguments the types used for parameterization
* @return {@link ParameterizedType}
*/
public static final ParameterizedType parameterize(final Class<?> raw, final Type... typeArguments) {
@ -1353,8 +1353,8 @@ public static final ParameterizedType parameterize(final Class<?> raw, final Typ
/**
* Create a parameterized type instance.
*
* @param raw
* @param typeArgMappings
* @param raw the raw class to create a parameterized type instance for
* @param typeArgMappings the mapping used for parameterization
* @return {@link ParameterizedType}
*/
public static final ParameterizedType parameterize(final Class<?> raw,
@ -1365,9 +1365,9 @@ public static final ParameterizedType parameterize(final Class<?> raw,
/**
* Create a parameterized type instance.
*
* @param owner
* @param raw
* @param typeArguments
* @param owner the owning type
* @param raw the raw class to create a parameterized type instance for
* @param typeArguments the types used for parameterization
*
* @return {@link ParameterizedType}
*/
@ -1394,9 +1394,9 @@ public static final ParameterizedType parameterizeWithOwner(final Type owner, fi
/**
* Create a parameterized type instance.
*
* @param owner
* @param raw
* @param typeArgMappings
* @param owner the owning type
* @param raw the raw class to create a parameterized type instance for
* @param typeArgMappings the mapping used for parameterization
* @return {@link ParameterizedType}
*/
public static final ParameterizedType parameterizeWithOwner(final Type owner, final Class<?> raw,
@ -1425,7 +1425,8 @@ public static WildcardTypeBuilder wildcardType() {
/**
* Create a generic array type instance.
*
* @param componentType
* @param componentType the type of the elements of the array. For example the component type of {@code boolean[]}
* is {@code boolean}
* @return {@link GenericArrayType}
*/
public static GenericArrayType genericArrayType(final Type componentType) {
@ -1435,8 +1436,8 @@ public static GenericArrayType genericArrayType(final Type componentType) {
/**
* Check equality of types.
*
* @param t1
* @param t2
* @param t1 the first type
* @param t2 the second type
* @return boolean
*/
public static boolean equals(Type t1, Type t2) {
@ -1494,7 +1495,7 @@ private static boolean equals(Type[] t1, Type[] t2) {
/**
* Present a given type as a Java-esque String.
*
* @param type
* @param type the type to create a String representation for
* @return String
*/
public static String toString(Type type) {
@ -1520,7 +1521,7 @@ public static String toString(Type type) {
/**
* Format a {@link TypeVariable} including its {@link GenericDeclaration}.
*
* @param var
* @param var the type variable to create a String representation for
* @return String
*/
public static String toLongString(TypeVariable<?> var) {