Correct JavaDoc for generic type parameter

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1533474 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-10-18 14:53:11 +00:00
parent 95f1f14b8e
commit c3116fcd11
1 changed files with 3 additions and 3 deletions

View File

@ -55,7 +55,7 @@ private WildcardTypeBuilder() {
private Type[] upperBounds; private Type[] upperBounds;
private Type[] lowerBounds; private Type[] lowerBounds;
public WildcardTypeBuilder withUpperBounds(Type... bounds) { public WildcardTypeBuilder withUpperBounds(Type... bounds) {
this.upperBounds = bounds; this.upperBounds = bounds;
return this; return this;
@ -1547,7 +1547,7 @@ public static String toLongString(TypeVariable<?> var) {
/** /**
* Wrap the specified {@link Type} in a {@link Typed} wrapper. * Wrap the specified {@link Type} in a {@link Typed} wrapper.
* *
* @param T inferred generic type * @param <T> inferred generic type
* @param type to wrap * @param type to wrap
* @return Typed<T> * @return Typed<T>
*/ */
@ -1563,7 +1563,7 @@ public Type getType() {
/** /**
* Wrap the specified {@link Class} in a {@link Typed} wrapper. * Wrap the specified {@link Class} in a {@link Typed} wrapper.
* *
* @param T generic type * @param <T> generic type
* @param type to wrap * @param type to wrap
* @return Typed<T> * @return Typed<T>
*/ */