Improved Javadoc

This commit is contained in:
Arjen Poutsma 2012-08-27 12:40:08 +02:00
parent 3794f995ba
commit d37e7878e6
2 changed files with 3 additions and 4 deletions

View File

@ -38,7 +38,7 @@ import org.springframework.util.Assert;
* @author Rossen Stoyanchev
* @since 3.2
*
* @see http://gafter.blogspot.nl/2006/12/super-type-tokens.html
* @see <a href="http://gafter.blogspot.nl/2006/12/super-type-tokens.html">Neal Gafter on Super Type Tokens</a>
*/
public abstract class ParameterizedTypeReference<T> {

View File

@ -19,7 +19,6 @@ package org.springframework.http.converter;
import java.io.IOException;
import java.lang.reflect.Type;
import org.springframework.core.ParameterizedTypeReference;
import org.springframework.http.HttpInputMessage;
import org.springframework.http.MediaType;
@ -30,7 +29,7 @@ import org.springframework.http.MediaType;
* @author Arjen Poutsma
* @since 3.2
*
* @see ParameterizedTypeReference
* @see org.springframework.core.ParameterizedTypeReference
*/
public interface GenericHttpMessageConverter<T> extends HttpMessageConverter<T> {
@ -45,7 +44,7 @@ public interface GenericHttpMessageConverter<T> extends HttpMessageConverter<T>
/**
* Read an object of the given type form the given input message, and returns it.
* @param clazz the type of object to return. This type must have previously
* @param type the type of object to return. This type must have previously
* been passed to the {@link #canRead canRead} method of this interface,
* which must have returned {@code true}.
* @param type the type of the target object